Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 0 additions & 3 deletions Directory.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,6 @@
<PropertyGroup>
<Authors>aka-nse</Authors>
<PackageProjectUrl>https://github.com/aka-nse/PathBench</PackageProjectUrl>
<PackageReadmeFile>readme.md</PackageReadmeFile>
<RepositoryUrl>https://github.com/aka-nse/PathBench</RepositoryUrl>
<PackageLicenseFile>LICENSE.txt</PackageLicenseFile>
<PackageIcon>icon.png</PackageIcon>
</PropertyGroup>
</Project>
6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -89,3 +89,9 @@ static class SampleClass
```

![graphviz sample](resources/GraphvizSample.svg)

## Release Notes

### v1.0.0

- First release
22 changes: 19 additions & 3 deletions src/PathBench/PathBench.csproj
Original file line number Diff line number Diff line change
@@ -1,11 +1,27 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<LangVersion>14.0</LangVersion>
<TargetFramework>net10.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<GenerateDocumentationFile>True</GenerateDocumentationFile>
</PropertyGroup>

<!-- package configs -->
<PropertyGroup>
<PackageId>akanse.$(AssemblyName)</PackageId>
<Title>PathBench</Title>
<Version>1.0.0</Version>
<Company />
<Product>PathBench</Product>
<Description>Code path performance monitoring tool.</Description>
<PackageReadmeFile>readme.md</PackageReadmeFile>
<PackageLicenseFile>LICENSE.txt</PackageLicenseFile>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)'=='Release'">
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
</PropertyGroup>

<ItemGroup>
<None Include="../../readme.md" Pack="true" PackagePath="" />
<None Include="../../LICENSE.txt" Pack="true" PackagePath="" />
</ItemGroup>
</Project>