CShock/TestApp/TestApp.csproj

20 lines
514 B
XML
Raw Normal View History

2024-01-20 20:02:12 +01:00
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
2025-01-16 20:55:24 +01:00
<TargetFrameworks>net8.0;net9.0</TargetFrameworks>
<LangVersion>latestmajor</LangVersion>
2024-01-20 20:02:12 +01:00
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\CShocker\CShocker.csproj" />
</ItemGroup>
<ItemGroup>
2025-01-16 20:55:24 +01:00
<PackageReference Include="GlaxLogger" Version="1.0.7.2" />
</ItemGroup>
2024-01-20 20:02:12 +01:00
</Project>