-
Notifications
You must be signed in to change notification settings - Fork 37
Expand file tree
/
Copy pathCommonBattleTech.props
More file actions
32 lines (29 loc) · 912 Bytes
/
CommonBattleTech.props
File metadata and controls
32 lines (29 loc) · 912 Bytes
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
<!-- includes references to BT, Unity and only System dlls provided there -->
<Project>
<Import Project=".\CommonBase.props" />
<PropertyGroup>
<TargetFramework>net472</TargetFramework>
<AssemblySearchPaths>
{HintPathFromItem};
$(BattleTechGameDir)\BattleTech_Data\Managed
</AssemblySearchPaths>
<DisableImplicitFrameworkReferences>true</DisableImplicitFrameworkReferences>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="GitVersion.MsBuild">
<PrivateAssets>All</PrivateAssets>
</PackageReference>
</ItemGroup>
<!-- DisableImplicitFrameworkReferences -->
<ItemGroup>
<Reference Include="mscorlib">
<Private>False</Private>
</Reference>
<Reference Include="System">
<Private>False</Private>
</Reference>
<Reference Include="System.Core">
<Private>False</Private>
</Reference>
</ItemGroup>
</Project>