You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
43 lines
1.4 KiB
43 lines
1.4 KiB
<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> |
|
</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> |
|
<ProjectReference Include="..\Model\Server.Model.csproj" /> |
|
</ItemGroup> |
|
|
|
<ItemGroup> |
|
<None Update="NLog.config"> |
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory> |
|
</None> |
|
</ItemGroup> |
|
|
|
<ItemGroup> |
|
<Reference Include="NCalc, Version=3.1.0.0, Culture=neutral, PublicKeyToken=null"> |
|
<HintPath>..\..\Unity\Temp\Bin\Debug\NCalc.dll</HintPath> |
|
</Reference> |
|
</ItemGroup> |
|
</Project>
|
|
|