Server.App.csproj 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  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>Server</AssemblyName>
  8. </PropertyGroup>
  9. <PropertyGroup>
  10. <AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
  11. <SatelliteResourceLanguages>en</SatelliteResourceLanguages>
  12. <DockerDefaultTargetOS>Linux</DockerDefaultTargetOS>
  13. <DockerfileContext>..\..</DockerfileContext>
  14. </PropertyGroup>
  15. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
  16. <DefineConstants>TRACE2_0;SERVER;NOT_UNITY</DefineConstants>
  17. <OutputPath>..\..\Bin\</OutputPath>
  18. <TreatWarningsAsErrors>true</TreatWarningsAsErrors>
  19. </PropertyGroup>
  20. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
  21. <DefineConstants>TRACE2_0;SERVER;NOT_UNITY</DefineConstants>
  22. <OutputPath>..\..\Bin\</OutputPath>
  23. <TreatWarningsAsErrors>true</TreatWarningsAsErrors>
  24. </PropertyGroup>
  25. <ItemGroup>
  26. <PackageReference Include="Microsoft.VisualStudio.Azure.Containers.Tools.Targets" Version="1.14.0" />
  27. </ItemGroup>
  28. <ItemGroup>
  29. <ProjectReference Include="..\Model\Server.Model.csproj" />
  30. </ItemGroup>
  31. <ItemGroup>
  32. <None Update="NLog.config">
  33. <CopyToOutputDirectory>Always</CopyToOutputDirectory>
  34. </None>
  35. </ItemGroup>
  36. </Project>