forked from VedalAI/neuro-amongus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathNeuro.csproj
63 lines (52 loc) · 2.49 KB
/
Neuro.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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<AssemblyName>Neuro</AssemblyName>
<Authors>VedalAI</Authors>
<Description>Neuro-sama Among Us plugin</Description>
<VersionPrefix>1.0.0</VersionPrefix>
<VersionSuffix>dev</VersionSuffix>
<TargetFramework>net6.0</TargetFramework>
<LangVersion>latest</LangVersion>
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<Configurations>DebugDataCollection;DebugFull;ReleaseDataCollection;ReleaseFull</Configurations>
</PropertyGroup>
<PropertyGroup Condition="$(Configuration.EndsWith('Full'))">
<DefineConstants>$(DefineConstants);FULL;</DefineConstants>
</PropertyGroup>
<PropertyGroup Condition="$(DefineConstants.Contains(';FULL;'))">
<Optimize>false</Optimize>
<DebugSymbols>true</DebugSymbols>
<DebugType>embedded</DebugType>
</PropertyGroup>
<PropertyGroup Condition="!$(DefineConstants.Contains(';FULL;'))">
<Optimize>true</Optimize>
<DebugSymbols>false</DebugSymbols>
<DebugType>none</DebugType>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="AmongUs.GameLibs.Steam" Version="2023.3.28" />
<PackageReference Include="BepInEx.AutoPlugin" Version="1.1.0" />
<PackageReference Include="BepInEx.IL2CPP.MSBuild" Version="2.0.1" />
<PackageReference Include="BepInEx.Unity.IL2CPP" Version="6.0.0-be.668" />
<PackageReference Include="Google.Protobuf" Version="3.22.1" />
<PackageReference Include="Grpc.Tools" Version="2.53.0" />
<PackageReference Include="Reactor" Version="2.1.0" />
</ItemGroup>
<ItemGroup>
<EmbeddedResource Include="**\Resources\**" />
<EmbeddedResource Include="$(NuGetPackageRoot)google.protobuf\3.22.1\lib\net5.0\Google.Protobuf.dll" LinkBase="Resources" />
</ItemGroup>
<ItemGroup>
<Protobuf Include="**\*.proto" GrpcServices="None" />
<Compile Update="@(Protobuf->'%(RelativeDir)%(Filename).cs')">
<DependentUpon>%(Filename).proto</DependentUpon>
</Compile>
</ItemGroup>
<ItemGroup>
<Compile Remove="zzz_excluded\**" />
</ItemGroup>
<Target Name="Copy" AfterTargets="Build" Condition="'$(AmongUs)' != ''">
<Copy SourceFiles="$(TargetPath)" DestinationFolder="$(AmongUs)/BepInEx/plugins/" UseSymboliclinksIfPossible="true" />
</Target>
</Project>