18 lines
416 B
XML
18 lines
416 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<OutputType>Exe</OutputType>
|
|
<TargetFramework>net7.0</TargetFramework>
|
|
<RootNamespace>gaseous_identifier</RootNamespace>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<Nullable>enable</Nullable>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<None Remove="classes\" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<Folder Include="classes\" />
|
|
</ItemGroup>
|
|
</Project>
|