27 lines
940 B
XML
27 lines
940 B
XML
<Project>
|
|
<PropertyGroup>
|
|
<TargetFramework>net48</TargetFramework>
|
|
<LangVersion>5.0</LangVersion>
|
|
<Nullable>disable</Nullable>
|
|
<TreatWarningsAsErrors>false</TreatWarningsAsErrors>
|
|
<EnforceCodeStyleInBuild>false</EnforceCodeStyleInBuild>
|
|
<GenerateDocumentationFile>false</GenerateDocumentationFile>
|
|
<Company>NT8 Institutional</Company>
|
|
<Product>NT8 SDK</Product>
|
|
<Copyright>Copyright © 2025</Copyright>
|
|
<Version>0.1.0</Version>
|
|
<AssemblyVersion>0.1.0.0</AssemblyVersion>
|
|
<FileVersion>0.1.0.0</FileVersion>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup Condition="'$(Configuration)' == 'Debug'">
|
|
<DefineConstants>DEBUG;TRACE</DefineConstants>
|
|
<DebugType>full</DebugType>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup Condition="'$(Configuration)' == 'Release'">
|
|
<DefineConstants>TRACE</DefineConstants>
|
|
<Optimize>true</Optimize>
|
|
<DebugType>pdbonly</DebugType>
|
|
</PropertyGroup>
|
|
</Project> |