-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathGLMod.csproj
More file actions
31 lines (26 loc) · 1.03 KB
/
Copy pathGLMod.csproj
File metadata and controls
31 lines (26 loc) · 1.03 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<Version>5.4.0</Version>
<GameVersion>2026.3.31</GameVersion>
<Description>GLMod</Description>
<Authors>Matux</Authors>
<Configurations>Debug</Configurations>
</PropertyGroup>
<ItemGroup>
<Reference Include="..\Among Us\BepInEx\core\*.dll" />
<Reference Include="..\Among Us\BepInEx\interop\*.dll" />
</ItemGroup>
<PropertyGroup>
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
<GenerateTargetFrameworkAttribute>false</GenerateTargetFrameworkAttribute>
</PropertyGroup>
<ItemGroup>
<Compile Remove="Items\**" />
<EmbeddedResource Remove="Items\**" />
<None Remove="Items\**" />
</ItemGroup>
<Target Name="Copy" AfterTargets="Build">
<Copy SourceFiles="$(OutputPath)$(AssemblyName).dll" DestinationFolder="../Among Us/BepInEx/plugins/" Condition="'$(Configuration)' == 'Debug'" />
</Target>
</Project>