-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMageAPI.csproj
More file actions
32 lines (29 loc) · 1.38 KB
/
MageAPI.csproj
File metadata and controls
32 lines (29 loc) · 1.38 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
<?xml version="1.0" encoding="utf-8"?>
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net48</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<OutputType>Library</OutputType>
<langVersion>preview</langVersion>
<GenerateDocumentationFile>True</GenerateDocumentationFile>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="BepInEx.BaseLib" Version="5.4.21" />
<PackageReference Include="BepInEx.Core" Version="5.4.21" />
<PackageReference Include="BepInEx.AssemblyPublicizer.MSBuild" Version="0.4.3">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="JrsJams-MageArena-GameLibs-Steam" Version="0.8.0.1" />
</ItemGroup>
<ItemGroup>
<Reference Include="BepInEx" Publicize="true">
<HintPath>$(NuGetPackageRoot)\bepinex.core\5.4.21\lib\net48\BepInEx.dll</HintPath>
</Reference>
</ItemGroup>
<Target Name="PostBuild" AfterTargets="PostBuildEvent">
<Exec Command="copy "$(TargetDir)MageAPI.dll" "C:\Program Files (x86)\Steam\steamapps\common\Mage Arena\Modded\BepInEx\plugins"" />
<Exec Command="copy "$(TargetDir)MageAPI.xml" "C:\Program Files (x86)\Steam\steamapps\common\Mage Arena\Modded\BepInEx\plugins"" />
</Target>
</Project>