-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathRadialPings.csproj
51 lines (42 loc) · 1.68 KB
/
RadialPings.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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<DebugType>portable</DebugType>
<DebugSymbols>true</DebugSymbols>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="BepInEx.Analyzers" Version="1.0.*">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="BepInEx.Core" Version="5.4.19" />
<PackageReference Include="R2API" Version="4.3.5" />
<PackageReference Include="RiskOfRain2.GameLibs" Version="1.2.2-r.0" />
<PackageReference Include="UnityEngine.Modules" Version="2019.4.26" />
</ItemGroup>
<ItemGroup>
<None Remove="lang_en.json" />
<None Remove="radialpings_assets" />
</ItemGroup>
<ItemGroup>
<EmbeddedResource Include="lang_en.json" />
<EmbeddedResource Include="radialpings_assets" />
</ItemGroup>
<ItemGroup>
<Reference Include="MMHOOK_RoR2">
<HintPath>lib\MMHOOK_RoR2.dll</HintPath>
</Reference>
<Reference Include="TILER2">
<HintPath>..\TILER2\bin\Release\netstandard2.0\TILER2.dll</HintPath>
<Private>false</Private>
</Reference>
</ItemGroup>
<ItemGroup>
<Folder Include="Build\RadialPings\" />
</ItemGroup>
<Target Name="PostBuild" AfterTargets="PostBuildEvent">
<Exec Command="xcopy "$(TargetPath)" "$(ProjectDir)Build\$(ProjectName)" /Y
xcopy "$(ProjectDir)ModMeta" "$(ProjectDir)Build\$(ProjectName)" /Y" />
</Target>
</Project>