-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDirectory.Build.props
More file actions
24 lines (22 loc) · 933 Bytes
/
Copy pathDirectory.Build.props
File metadata and controls
24 lines (22 loc) · 933 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
<Project>
<PropertyGroup>
<RootNamespace>PerceptiveHeightX</RootNamespace>
<Version>0.1.0</Version>
<LangVersion>7.3</LangVersion>
<Deterministic>true</Deterministic>
<DebugType>embedded</DebugType>
<GenerateAssemblyInfo>true</GenerateAssemblyInfo>
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
<OutputPath>..\..\bin\$(MSBuildProjectName)\</OutputPath>
</PropertyGroup>
<ItemGroup>
<!-- Allows building .NET Framework targets on any OS -->
<PackageReference Include="Microsoft.NETFramework.ReferenceAssemblies" Version="1.0.3" PrivateAssets="All" />
</ItemGroup>
<!-- Do not copy referenced game/framework dlls to the build output, ship only the plugin dll -->
<Target Name="SkipAllRefs" AfterTargets="ResolveReferences">
<ItemGroup>
<ReferenceCopyLocalPaths Remove="@(ReferenceCopyLocalPaths)" />
</ItemGroup>
</Target>
</Project>