ET.App.csproj 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <OutputType>Exe</OutputType>
  4. <TargetFramework>net6.0</TargetFramework>
  5. <RootNamespace>ET</RootNamespace>
  6. <LangVersion>8</LangVersion>
  7. <AssemblyName>App</AssemblyName>
  8. </PropertyGroup>
  9. <PropertyGroup>
  10. <AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
  11. <SatelliteResourceLanguages>en</SatelliteResourceLanguages>
  12. </PropertyGroup>
  13. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
  14. <DefineConstants>TRACE2_0;SERVER;NOT_UNITY</DefineConstants>
  15. <OutputPath>..\..\Bin\</OutputPath>
  16. <TreatWarningsAsErrors>true</TreatWarningsAsErrors>
  17. </PropertyGroup>
  18. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
  19. <DefineConstants>TRACE2_0;SERVER;NOT_UNITY</DefineConstants>
  20. <OutputPath>..\..\Bin\</OutputPath>
  21. <TreatWarningsAsErrors>true</TreatWarningsAsErrors>
  22. </PropertyGroup>
  23. <ItemGroup>
  24. <None Update="NLog.config">
  25. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  26. </None>
  27. </ItemGroup>
  28. <ItemGroup>
  29. <ProjectReference Include="..\Model\ET.Model.csproj" />
  30. </ItemGroup>
  31. </Project>