| 1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- <Project Sdk="Microsoft.NET.Sdk">
- <PropertyGroup>
- <OutputType>Exe</OutputType>
- <TargetFramework>netcoreapp3.1</TargetFramework>
- <RootNamespace>ET</RootNamespace>
- <LangVersion>7.3</LangVersion>
- </PropertyGroup>
- <PropertyGroup>
- <AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
- </PropertyGroup>
- <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
- <DefineConstants>TRACE2_0;SERVER;NOT_CLIENT</DefineConstants>
- <OutputPath>..\..\Bin\</OutputPath>
- <TreatWarningsAsErrors>true</TreatWarningsAsErrors>
- </PropertyGroup>
- <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
- <DefineConstants>TRACE2_0;SERVER;NOT_CLIENT</DefineConstants>
- <OutputPath>..\..\Bin\</OutputPath>
- <TreatWarningsAsErrors>true</TreatWarningsAsErrors>
- </PropertyGroup>
- <ItemGroup>
- <PackageReference Include="NLog" Version="4.5.4" />
- </ItemGroup>
- <ItemGroup>
- <ProjectReference Include="..\Model\Server.Model.csproj" />
- </ItemGroup>
- <ItemGroup>
- <None Update="NLog.config">
- <CopyToOutputDirectory>Always</CopyToOutputDirectory>
- </None>
- </ItemGroup>
- <ItemGroup>
- <Folder Include="Properties" />
- </ItemGroup>
- </Project>
|