-
-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathDirectory.Build.props
More file actions
29 lines (26 loc) · 1.17 KB
/
Directory.Build.props
File metadata and controls
29 lines (26 loc) · 1.17 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
<Project>
<PropertyGroup>
<GenerateAssemblyInformationVersionAttribute>false</GenerateAssemblyInformationVersionAttribute>
<SharedBinPath>$(MSBuildThisFileDirectory)bin\</SharedBinPath>
<NoWarn>MSB3277</NoWarn>
</PropertyGroup>
<Target Name="CopyToSharedBin" AfterTargets="Build">
<Copy SourceFiles="$(OutputPath)$(AssemblyName).dll"
DestinationFolder="$(SharedBinPath)"
SkipUnchangedFiles="true"/>
</Target>
<ItemGroup>
<Reference Include="Assembly-CSharp" Publicize="true"/>
<Reference Include="CommandSystem.Core"/>
<Reference Include="Mirror" Publicize="true"/>
<Reference Include="UnityEngine"/>
<Reference Include="UnityEngine.CoreModule"/>
<Reference Include="UnityEngine.PhysicsModule"/>
<Reference Include="NorthwoodLib"/>
<Reference Include="mscorlib"/>
</ItemGroup>
<ItemGroup>
<PackageReference Include="Northwood.LabAPI"/>
<PackageReference Include="BepInEx.AssemblyPublicizer.MSBuild" PrivateAssets="all" ExcludeAssets="runtime" ReferenceOutputAssembly="false" Private="true"/>
</ItemGroup>
</Project>