Skip to content

Commit

Permalink
Add readme to the package
Browse files Browse the repository at this point in the history
  • Loading branch information
chriswalpen committed Oct 31, 2024
1 parent 87ec9ce commit 675e13d
Show file tree
Hide file tree
Showing 2 changed files with 34 additions and 29 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ Measuremap allows profiling and benchmarking from simple code fragmets to full a

Visit [https://wickedflame.github.io/MeasureMap/](https://wickedflame.github.io/MeasureMap/) for the full documentation.

MeasureMap uses the builder pattern and a fluent API to make benchmarking as simple as possible.
MeasureMap uses the builder pattern and a fluent API to make profiling or benchmarking as simple as possible.

## Profiling
Profiles are initiated with ProfilerSession.StartSession().
Expand Down
61 changes: 33 additions & 28 deletions src/MeasureMap/MeasureMap.csproj
Original file line number Diff line number Diff line change
@@ -1,33 +1,38 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFrameworks>netstandard2.0</TargetFrameworks>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<RepositoryUrl>https://github.com/WickedFlame/MeasureMap</RepositoryUrl>
<SignAssembly>true</SignAssembly>
<DelaySign>false</DelaySign>
<AssemblyOriginatorKeyFile>MeasureMap.snk</AssemblyOriginatorKeyFile>
<Company>WickedFlame</Company>
<Authors>Christian Walpen</Authors>
<Copyright>@ WickedFlame 2019</Copyright>
<Title>MeasureMap</Title>
<Summary>Performance Benchmarking for .NET</Summary>
<Description>Performance Benchmarking for .NET</Description>
<PackageProjectUrl>http://wickedflame.github.io/MeasureMap</PackageProjectUrl>
<PackageTags>Benchmark Performance Test</PackageTags>
<Version>1.0.0</Version>
<AssemblyVersion>1.0.0.0</AssemblyVersion>
<FileVersion>1.0.0</FileVersion>
<PackageVersion>1.0.0.0</PackageVersion>
<NeutralLanguage>en</NeutralLanguage>
<LangVersion>9.0</LangVersion>
</PropertyGroup>
<PropertyGroup>
<TargetFrameworks>netstandard2.0</TargetFrameworks>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<RepositoryUrl>https://github.com/WickedFlame/MeasureMap</RepositoryUrl>
<SignAssembly>true</SignAssembly>
<DelaySign>false</DelaySign>
<AssemblyOriginatorKeyFile>MeasureMap.snk</AssemblyOriginatorKeyFile>
<Company>WickedFlame</Company>
<Authors>Christian Walpen</Authors>
<Copyright>@ WickedFlame 2019</Copyright>
<Title>MeasureMap</Title>
<Summary>Performance Benchmarking for .NET</Summary>
<Description>Performance Benchmarking for .NET</Description>
<PackageProjectUrl>http://wickedflame.github.io/MeasureMap</PackageProjectUrl>
<PackageTags>Benchmark Performance Test</PackageTags>
<Version>1.0.0</Version>
<AssemblyVersion>1.0.0.0</AssemblyVersion>
<FileVersion>1.0.0</FileVersion>
<PackageVersion>1.0.0.0</PackageVersion>
<NeutralLanguage>en</NeutralLanguage>
<LangVersion>9.0</LangVersion>
<PackageReadmeFile>README.md</PackageReadmeFile>
</PropertyGroup>

<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<DocumentationFile>bin\Release\netstandard2.0\MeasureMap.xml</DocumentationFile>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<DocumentationFile>bin\Release\netstandard2.0\MeasureMap.xml</DocumentationFile>
</PropertyGroup>

<ItemGroup>
<None Include="..\..\README.md" Pack="true" PackagePath="\" />
</ItemGroup>

</Project>

0 comments on commit 675e13d

Please sign in to comment.