-
Notifications
You must be signed in to change notification settings - Fork 0
/
CWLiveLeak.csproj
64 lines (57 loc) · 2.74 KB
/
CWLiveLeak.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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard2.1</TargetFramework>
<AssemblyName>CWLiveLeak</AssemblyName>
<Description>My first plugin</Description>
<Version>1.0.1</Version>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<LangVersion>latest</LangVersion>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="BepInEx.Analyzers" Version="1.*" PrivateAssets="all" />
<PackageReference Include="BepInEx.Core" Version="5.*" />
<PackageReference Include="BepInEx.PluginInfoProps" Version="1.*" />
<PackageReference Include="UnityEngine.Modules" Version="5.6.0" IncludeAssets="compile" />
</ItemGroup>
<ItemGroup Condition="'$(TargetFramework.TrimEnd(`0123456789`))' == 'net'">
<PackageReference Include="Microsoft.NETFramework.ReferenceAssemblies" Version="1.0.2" PrivateAssets="all" />
</ItemGroup>
<ItemGroup>
<Reference Include="Assembly-CSharp">
<HintPath>..\..\..\..\Program Files (x86)\Steam\steamapps\common\Content Warning\Content Warning_Data\Managed\Assembly-CSharp.dll</HintPath>
</Reference>
<Reference Include="MMHOOK_Assembly-CSharp">
<HintPath>..\..\AppData\Roaming\r2modmanPlus-local\ContentWarning\profiles\Default\BepInEx\plugins\MMHOOK\Managed\MMHOOK_Assembly-CSharp.dll</HintPath>
</Reference>
<Reference Include="MMHOOK_Zorro.Recorder">
<HintPath>..\..\AppData\Roaming\r2modmanPlus-local\ContentWarning\profiles\Default\BepInEx\plugins\MMHOOK\Managed\MMHOOK_Zorro.Recorder.dll</HintPath>
</Reference>
<Reference Include="UnityEngine">
<HintPath>..\..\..\..\Program Files (x86)\Steam\steamapps\common\Content Warning\Content Warning_Data\Managed\UnityEngine.dll</HintPath>
</Reference>
<Reference Include="Zorro.Recorder">
<HintPath>..\..\..\..\Program Files (x86)\Steam\steamapps\common\Content Warning\Content Warning_Data\Managed\Zorro.Recorder.dll</HintPath>
</Reference>
</ItemGroup>
<ItemGroup>
<None Remove="Hooks\SelectionManager.csdisabled" />
<None Remove="hypercam.png" />
<Resource Include="hypercam.png">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Resource>
</ItemGroup>
<ItemGroup>
<None Remove="liveleak.png" />
<Resource Include="liveleak.png">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Resource>
<None Remove="spookycam.png" />
<Compile Include="Hooks\SelectionManager.csdisabled" />
<Resource Include="spookycam.png">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Resource>
</ItemGroup>
<ItemGroup>
<Folder Include="readmeassets\" />
</ItemGroup>
</Project>