Skip to content

Commit

Permalink
Use .net 9
Browse files Browse the repository at this point in the history
  • Loading branch information
nikeee committed Oct 25, 2024
1 parent 8656811 commit ab55b42
Show file tree
Hide file tree
Showing 2 changed files with 52 additions and 52 deletions.
2 changes: 1 addition & 1 deletion src/Common.props
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<PropertyGroup>

<RootNamespace>HolzShots</RootNamespace>
<TargetFramework>net8.0-windows</TargetFramework>
<TargetFramework>net9.0-windows</TargetFramework>

<Version>2.0.0</Version>

Expand Down
102 changes: 51 additions & 51 deletions src/HolzShots.Core.Tests/HolzShots.Core.Tests.csproj
Original file line number Diff line number Diff line change
@@ -1,51 +1,51 @@
<Project Sdk="Microsoft.NET.Sdk">

<Import Project="..\Common.props" />

<PropertyGroup>
<RootNamespace>HolzShots.Tests</RootNamespace>

<TargetFramework>net8.0-windows</TargetFramework>
<UseWindowsForms>true</UseWindowsForms>

<IsPackable>false</IsPackable>

<AssemblyTitle>HolzShots.Core.Tests</AssemblyTitle>
<Product>HolzShots.Core.Tests</Product>
<Description>HolzShots Core Component Tests</Description>
</PropertyGroup>

<ItemGroup>
<None Include="Files\*">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
</ItemGroup>

<ItemGroup>
<ProjectReference Include="..\HolzShots.Core\HolzShots.Core.csproj" />
</ItemGroup>

<ItemGroup>
<PackageReference Include="xunit" Version="2.9.2" />
<PackageReference Include="xunit.runner.console" Version="2.9.2" PrivateAssets="all" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.11.1" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.8.2">
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
</PackageReference>

<PackageReference Include="coverlet.collector" Version="6.0.2">
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
</PackageReference>

<Reference Include="System.ComponentModel.Composition" />

<PackageReference Include="Microsoft.NETCore.Platforms" Version="7.0.4" />
<PackageReference Include="MSTest.TestAdapter" Version="3.6.1" />
<PackageReference Include="MSTest.TestFramework" Version="3.6.1" />


<PackageReference Include="Semver" Version="2.3.0" />
</ItemGroup>
</Project>
<Project Sdk="Microsoft.NET.Sdk">

<Import Project="..\Common.props" />

<PropertyGroup>
<RootNamespace>HolzShots.Tests</RootNamespace>

<TargetFramework>net9.0-windows</TargetFramework>
<UseWindowsForms>true</UseWindowsForms>

<IsPackable>false</IsPackable>

<AssemblyTitle>HolzShots.Core.Tests</AssemblyTitle>
<Product>HolzShots.Core.Tests</Product>
<Description>HolzShots Core Component Tests</Description>
</PropertyGroup>

<ItemGroup>
<None Include="Files\*">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
</ItemGroup>

<ItemGroup>
<ProjectReference Include="..\HolzShots.Core\HolzShots.Core.csproj" />
</ItemGroup>

<ItemGroup>
<PackageReference Include="xunit" Version="2.9.2" />
<PackageReference Include="xunit.runner.console" Version="2.9.2" PrivateAssets="all" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.11.1" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.8.2">
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
</PackageReference>

<PackageReference Include="coverlet.collector" Version="6.0.2">
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
</PackageReference>

<Reference Include="System.ComponentModel.Composition" />

<PackageReference Include="Microsoft.NETCore.Platforms" Version="7.0.4" />
<PackageReference Include="MSTest.TestAdapter" Version="3.6.1" />
<PackageReference Include="MSTest.TestFramework" Version="3.6.1" />


<PackageReference Include="Semver" Version="2.3.0" />
</ItemGroup>
</Project>

0 comments on commit ab55b42

Please sign in to comment.