-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathShopAPI.csproj
75 lines (66 loc) · 3.43 KB
/
ShopAPI.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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard2.1</TargetFramework>
<DisableImplicitFrameworkReferences>true</DisableImplicitFrameworkReferences>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<LangVersion>latest</LangVersion>
<CWDir Condition=" '$(CWDir)' == '' And Exists('E:\SteamLibrary\steamapps\common\Content Warning') ">E:\SteamLibrary\steamapps\common\Content Warning</CWDir>
<CWDir Condition=" '$(CWDir)' == '' ">C:\Program Files (x86)\Steam\steamapps\common\Content Warning</CWDir>
<Configurations>Debug;Release;Modman (Release)</Configurations>
<GenerateDocumentationFile>True</GenerateDocumentationFile>
<!--
<AssemblyName Condition="'$(Configuration)'!='Modman (Release)'">$(AssemblyName)</AssemblyName>
<AssemblyName Condition="'$(Configuration)'=='Modman (Release)'">$(AssemblyName).bepinex</AssemblyName>
-->
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<DefineConstants>$(DefineConstants);STEAM</DefineConstants>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<DefineConstants>$(DefineConstants);STEAM</DefineConstants>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Modman (Release)|AnyCPU'">
<DefineConstants>$(DefineConstants);MODMAN</DefineConstants>
</PropertyGroup>
<ItemGroup>
<Reference Condition="'$(Configuration)'=='Modman (Release)'" Include="$(AppData)\r2modmanPlus-local\ContentWarning\profiles\Default\BepInEx\core\BepInEx.dll" Private="false" />
<Reference Include="$(CWDir)\Content Warning_Data\Managed\*.dll" Private="false" Publicize="True" />
</ItemGroup>
<ItemGroup>
<Compile Remove="publish\**" />
<EmbeddedResource Remove="publish\**" />
<None Remove="publish\**" />
</ItemGroup>
<!-- Use BepInEx's Assembly Publicizer to tell the compiler & IDE that every field, method, etc. is public, in the game assemblies. -->
<!-- This makes it easier to change fields and call methods that would otherwise be private. -->
<ItemGroup>
<PackageReference Include="BepInEx.AssemblyPublicizer.MSBuild" Version="0.4.2">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
</ItemGroup>
<Target Condition="'$(Configuration)'!='Modman (Release)'" Name="CopyVanillaPlugin" AfterTargets="Build">
<ItemGroup>
<SteamFiles Include="publish\steam\*.*"/>
</ItemGroup>
<!-- The 1 in the destination folder name ensures its the first plugin to load. -->
<Copy
SourceFiles="$(OutputPath)\$(AssemblyName).dll;@(SteamFiles)"
DestinationFolder="$(CWDir)\Plugins\1$(MSBuildProjectName)"
/>
</Target>
<Target Condition="'$(Configuration)'=='Modman (Release)'" Name="CopyBepInExPlugin" AfterTargets="Build">
<ItemGroup>
<ThunderstoreFiles Include="publish\thunderstore\*.*"/>
</ItemGroup>
<Copy
SourceFiles="@(ThunderstoreFiles)"
DestinationFolder="$(OutputPath)"
/>
<Copy
SourceFiles="$(OutputPath)\$(AssemblyName).dll;@(ThunderstoreFiles)"
DestinationFolder="$(AppData)\r2modmanPlus-local\ContentWarning\profiles\Default\BepInEx\plugins\$(MSBuildProjectName)"
/>
</Target>
</Project>