| 12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- <Project Sdk="Microsoft.NET.Sdk">
- <PropertyGroup>
- <OutputType>Exe</OutputType>
- <TargetFramework>net6.0</TargetFramework>
- <RootNamespace>ET</RootNamespace>
- <LangVersion>8</LangVersion>
- <AssemblyName>Server</AssemblyName>
- </PropertyGroup>
- <PropertyGroup>
- <AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
- <SatelliteResourceLanguages>en</SatelliteResourceLanguages>
- <DockerDefaultTargetOS>Linux</DockerDefaultTargetOS>
- <DockerfileContext>..\..</DockerfileContext>
- </PropertyGroup>
- <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
- <DefineConstants>TRACE2_0;SERVER;NOT_UNITY</DefineConstants>
- <OutputPath>..\..\Bin\</OutputPath>
- <TreatWarningsAsErrors>true</TreatWarningsAsErrors>
- </PropertyGroup>
- <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
- <DefineConstants>TRACE2_0;SERVER;NOT_UNITY</DefineConstants>
- <OutputPath>..\..\Bin\</OutputPath>
- <TreatWarningsAsErrors>true</TreatWarningsAsErrors>
- </PropertyGroup>
- <ItemGroup>
- <PackageReference Include="Microsoft.VisualStudio.Azure.Containers.Tools.Targets" Version="1.14.0" />
- </ItemGroup>
- <ItemGroup>
- <ProjectReference Include="..\Model\Server.Model.csproj" />
- </ItemGroup>
- <ItemGroup>
- <None Update="NLog.config">
- <CopyToOutputDirectory>Always</CopyToOutputDirectory>
- </None>
- </ItemGroup>
- </Project>
|