Skip to content

Commit

Permalink
bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
emako committed Jul 11, 2024
1 parent 4b8c2a6 commit bb1b230
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 7 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ The PresentMon .NET Wrapper for FPS.
**PackageReference**

```xaml
<PackageReference Include="PresentMonFps" Version="2.0.0" />
<PackageReference Include="PresentMonFps" Version="2.0.1" />
```

## Demo
Expand Down Expand Up @@ -48,4 +48,4 @@ await FpsInspector.StartForeverAsync(new FpsRequest(pid), Console.WriteLine, nul

Q. What's the diff with v1?

A. Use .NET only instead of C++.
A. C++ Library and UAC is not necessary anymore, the method of `ForeverAsync` is more faster.
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,14 @@
<TargetFramework>net8.0</TargetFramework>
<Nullable>enable</Nullable>
<Platforms>AnyCPU;x86;x64</Platforms>
<PackageVersion>2.0.1</PackageVersion>
<AssemblyVersion>2.0.1</AssemblyVersion>
<FileVersion>2.0.1</FileVersion>
<Version>$(VersionPrefix)2.0.1</Version>
</PropertyGroup>

<ItemGroup>
<!--<PackageReference Include="PresentMonFps" Version="1.0.8" />-->
<!--<PackageReference Include="PresentMonFps" Version="2.0.1" />-->
</ItemGroup>

<ItemGroup>
Expand Down
4 changes: 4 additions & 0 deletions demo/PresentMon.SampleWPF/PresentMon.SampleWPF.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,10 @@
<TargetFramework>net8.0-windows</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<PackageVersion>2.0.1</PackageVersion>
<AssemblyVersion>2.0.1</AssemblyVersion>
<FileVersion>2.0.1</FileVersion>
<Version>$(VersionPrefix)2.0.1</Version>
<UseWPF>true</UseWPF>
</PropertyGroup>

Expand Down
8 changes: 4 additions & 4 deletions src/PresentMonFps.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@
<OutputType>Library</OutputType>
<TargetFramework>netstandard2.0</TargetFramework>
<AssemblyName>PresentMonFps</AssemblyName>
<PackageVersion>2.0.0</PackageVersion>
<AssemblyVersion>2.0.0</AssemblyVersion>
<FileVersion>2.0.0</FileVersion>
<Version>$(VersionPrefix)2.0.0</Version>
<PackageVersion>2.0.1</PackageVersion>
<AssemblyVersion>2.0.1</AssemblyVersion>
<FileVersion>2.0.1</FileVersion>
<Version>$(VersionPrefix)2.0.1</Version>
<LangVersion>12.0</LangVersion>
<Nullable>enable</Nullable>
<Authors>Lemutec</Authors>
Expand Down

0 comments on commit bb1b230

Please sign in to comment.