-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDirectory.Build.props
More file actions
45 lines (38 loc) · 1.8 KB
/
Copy pathDirectory.Build.props
File metadata and controls
45 lines (38 loc) · 1.8 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
<Project>
<PropertyGroup>
<TarkovDir Condition=" '$(TarkovDir)' == '' AND '$(TARKOV_DIR)' != '' ">$(TARKOV_DIR)</TarkovDir>
<TarkovDir Condition=" '$(TarkovDir)' == '' ">$(MSBuildThisFileDirectory)..\..\</TarkovDir>
<TarkovManagedDir Condition="'$(TarkovManagedDir)' == ''">$(TarkovDir)EscapeFromTarkov_Data\Managed\</TarkovManagedDir>
<TarkovBepInExCoreDir Condition="'$(TarkovBepInExCoreDir)' == ''">$(TarkovDir)BepInEx\core\</TarkovBepInExCoreDir>
<TarkovPluginsSPTDir Condition="'$(TarkovPluginsSPTDir)' == ''">$(TarkovDir)BepInEx\plugins\spt\</TarkovPluginsSPTDir>
</PropertyGroup>
<PropertyGroup>
<PathMap>$(MSBuildProjectDirectory)=.</PathMap>
</PropertyGroup>
<PropertyGroup>
<LangVersion>latest</LangVersion>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<TreatWarningsAsErrors>false</TreatWarningsAsErrors>
<EnableNETAnalyzers>true</EnableNETAnalyzers>
<AnalysisLevel>latest</AnalysisLevel>
<Company>cebarks</Company>
<Product>Convoy</Product>
<Authors>cebarks</Authors>
<VersionPrefix>0.1.0</VersionPrefix>
<AssemblyVersion>0.1.0.0</AssemblyVersion>
<FileVersion>0.1.0.0</FileVersion>
</PropertyGroup>
<PropertyGroup>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<NoWarn>$(NoWarn);CS1591</NoWarn>
</PropertyGroup>
<PropertyGroup>
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
<Deterministic>true</Deterministic>
</PropertyGroup>
<!-- Cross-platform net472 compilation -->
<ItemGroup>
<PackageReference Include="Microsoft.NETFramework.ReferenceAssemblies.net472" Version="1.0.3" PrivateAssets="all" />
</ItemGroup>
</Project>