-
-
Notifications
You must be signed in to change notification settings - Fork 63
Expand file tree
/
Copy pathEHR.csproj
More file actions
62 lines (56 loc) · 2.97 KB
/
Copy pathEHR.csproj
File metadata and controls
62 lines (56 loc) · 2.97 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
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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<AmongUsPath>D:\SteamLibrary\steamapps\common\Among Us</AmongUsPath>
</PropertyGroup>
<Import Project="local.props" Condition="Exists('local.props')" />
<PropertyGroup>
<TargetFramework Condition="'$(Configuration)' == 'Android'">net8.0</TargetFramework>
<TargetFramework Condition="'$(Configuration)' != 'Android'">net6.0</TargetFramework>
<GenerateAssemblyFileVersionAttribute>false</GenerateAssemblyFileVersionAttribute>
<GenerateAssemblyInformationalVersionAttribute>false</GenerateAssemblyInformationalVersionAttribute>
<GenerateAssemblyVersionAttribute>false</GenerateAssemblyVersionAttribute>
<Description>EHR</Description>
<Authors>Gurge44</Authors>
<LangVersion>preview</LangVersion>
<AmongUs>$(AmongUsPath)</AmongUs>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<Optimize>True</Optimize>
<AssemblyName>$(MSBuildProjectName)</AssemblyName>
<Configurations>Debug;Release;Android</Configurations>
<Platforms>AnyCPU</Platforms>
<RepositoryUrl>https://github.com/Gurge44/EndlessHostRoles</RepositoryUrl>
</PropertyGroup>
<ItemGroup>
<EmbeddedResource Include=".\Resources\**"/>
</ItemGroup>
<ItemGroup>
<Compile Remove="CTA\**"/>
<EmbeddedResource Remove="CTA\**"/>
<None Remove="CTA\**"/>
</ItemGroup>
<ItemGroup>
<PackageReference Include="AmongUs.GameLibs.Steam" Version="2026.6.5" PrivateAssets="all" Condition="'$(Configuration)' == 'Release' Or '$(Configuration)' == 'Debug'" />
<PackageReference Include="AmongUs.GameLibs.Android" Version="2025.10.14" PrivateAssets="all" Condition="'$(Configuration)' == 'Android'"/>
<PackageReference Include="BepInEx.IL2CPP.MSBuild" Version="2.1.0-rc.1"/>
<PackageReference Include="BepInEx.Unity.IL2CPP" Version="6.0.0-be.735" Private="false" ExcludeAssets="runtime;native" />
<PackageReference Include="JetBrains.Annotations" Version="2025.2.4" />
<PackageReference Include="Samboy063.Cpp2IL.Core" Version="2022.1.0-pre-release.21" />
</ItemGroup>
<ItemGroup>
<Reference Include="JetBrains.Annotations">
<Aliases>JetBrainsAnnotationsNuget</Aliases>
</Reference>
</ItemGroup>
<ItemGroup>
<PackageReference Include="GitInfo" Version="3.3.4">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
</ItemGroup>
<Target Name="Roles" AfterTargets="Build">
<Copy SourceFiles="CustomRoles.cs" DestinationFolder="CTA/CustomTeamAssigner/"/>
</Target>
<Target Name="Copy" AfterTargets="Build" Condition="'$(AmongUs)' != '' And '$(Configuration)' != 'Android'">
<Copy SourceFiles="$(OutputPath)$(AssemblyName).dll" DestinationFolder="$(AmongUs)/BepInEx/plugins/"/>
</Target>
</Project>