39 lines
1.1 KiB
XML
39 lines
1.1 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<OutputType>Library</OutputType>
|
|
<TargetFramework>netcoreapp2.1</TargetFramework>
|
|
<ApplicationIcon />
|
|
<StartupObject />
|
|
<Configurations>Debug;Release;ServerBuild</Configurations>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
|
|
<PlatformTarget>x64</PlatformTarget>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<Compile Remove="Gui\vehiclemenu\web\**" />
|
|
<Compile Remove="tmp\**" />
|
|
<EmbeddedResource Remove="Gui\vehiclemenu\web\**" />
|
|
<EmbeddedResource Remove="tmp\**" />
|
|
<None Remove="Gui\vehiclemenu\web\**" />
|
|
<None Remove="tmp\**" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<Folder Include="assets\css\atm\" />
|
|
<Folder Include="assets\img\atm\" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<Reference Include="rage-sharp" Condition="'$(ConfigurationName)' != 'ServerBuild'">
|
|
<HintPath>..\..\..\dotnet\rage-sharp.dll</HintPath>
|
|
</Reference>
|
|
<Reference Include="rage-sharp" Condition="'$(ConfigurationName)' == 'ServerBuild'">
|
|
<HintPath>..\..\rage-sharp.dll</HintPath>
|
|
</Reference>
|
|
</ItemGroup>
|
|
|
|
</Project>
|