18 lines
551 B
XML
18 lines
551 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<OutputType>Exe</OutputType>
|
|
<TargetFramework>net9.0</TargetFramework>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<Nullable>enable</Nullable>
|
|
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
|
|
<GenerateTargetFrameworkAttribute>false</GenerateTargetFrameworkAttribute>
|
|
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<Content Include="src\CogwheelLib.csproj" />
|
|
<Compile Remove="obj\**\*.AssemblyAttributes.cs" />
|
|
</ItemGroup>
|
|
|
|
</Project> |