-
Notifications
You must be signed in to change notification settings - Fork 0
/
VesselRenamer.csproj
26 lines (23 loc) · 1.61 KB
/
VesselRenamer.csproj
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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
</PropertyGroup>
<ItemGroup>
<Reference Include="..\external_dlls\SpaceWarp.dll" />
<Reference Include="..\external_dlls\UnityEngine.dll" />
<Reference Include="..\external_dlls\UnityEngine.IMGUIModule.dll" />
<Reference Include="..\external_dlls\UnityEngine.CoreModule.dll" />
<Reference Include="..\external_dlls\Assembly-CSharp.dll" />
<Reference Include="..\external_dlls\Assembly-CSharp-firstpass.dll" />
<Reference Include="..\external_dlls\NewtonSoft.Json.dll" />
<Reference Include="..\external_dlls\NewtonSoft.Json.dll" />
<Reference Include="..\external_dlls\UnityEngine.InputLegacyModule.dll" />
<Reference Include="..\external_dlls\BepInEx.dll" />
</ItemGroup>
<Target Name="PreBuild" BeforeTargets="PreBuildEvent">
<Exec Command="echo Conf $(Configuration)
echo Output $(OutDir)
echo ProjectDir $(ProjectDir)
echo AssemblyName $(AssemblyName)" />
</Target>
<Target Name="PostBuild" AfterTargets="PostBuildEvent">
<Exec Command="copy /Y "$(OutDir)$(AssemblyName).dll" "$(ProjectDir)vessel_renamer\$(AssemblyName).dll"
echo Copied "$(OutDir)$(AssemblyName).dll" to "$(ProjectDir)vessel_renamer\$(AssemblyName).dll"

copy /Y "$(ProjectDir)README.md" "$(ProjectDir)vessel_renamer\"
copy /Y "$(ProjectDir)LICENSE.txt" "$(ProjectDir)vessel_renamer\LICENSE.txt"
echo Copied README and LICENSE" />
</Target>
</Project>