-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBetterLanguages.csproj
47 lines (41 loc) · 2.12 KB
/
BetterLanguages.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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard2.1</TargetFramework>
<Version>1.0.0</Version>
<GameVersion>2020.12.9s</GameVersion>
<Mappings>NuclearPowered/Mappings:0.1.2</Mappings>
<Description>Mod for having More and fuller translation support for among us</Description>
<Authors>inXS212</Authors>
<RepositoryUrl>https://github.com/inXS212/BetterLanguages</RepositoryUrl>
<PackageProjectUrl>https://github.com/inXS212/BetterLanguages</PackageProjectUrl>
<RepositoryType>Github</RepositoryType>
</PropertyGroup>
<PropertyGroup Condition="'$(GamePlatform)' == 'Steam'">
<GameVersion>2020.12.9s</GameVersion>
<DefineConstants>$(DefineConstants);STEAM</DefineConstants>
</PropertyGroup>
<PropertyGroup Condition="'$(GamePlatform)' == 'Itch'">
<GameVersion>2020.11.17i</GameVersion>
<DefineConstants>$(DefineConstants);ITCH</DefineConstants>
</PropertyGroup>
<ItemGroup>
<Deobfuscate Include="$(AmongUs)\BepInEx\plugins\Reactor-$(GameVersion).dll" />
<EmbeddedResource Include="Assets\Brazilian.txt" />
<EmbeddedResource Include="Assets\Dutch.txt" />
<EmbeddedResource Include="Assets\English.txt" />
<EmbeddedResource Include="Assets\Filipino.txt" />
<EmbeddedResource Include="Assets\French.txt" />
<EmbeddedResource Include="Assets\German.txt" />
<EmbeddedResource Include="Assets\Italian.txt" />
<EmbeddedResource Include="Assets\Japanese.txt" />
<EmbeddedResource Include="Assets\Korean.txt" />
<EmbeddedResource Include="Assets\Portuguese.txt" />
<EmbeddedResource Include="Assets\Russian.txt" />
<EmbeddedResource Include="Assets\Spanish %28EU%29.txt" />
<EmbeddedResource Include="Assets\Spanish %28LA%29.txt" />
<PackageReference Include="Reactor.OxygenFilter.MSBuild" Version="0.2.5" />
</ItemGroup>
<Target Name="Copy" AfterTargets="Reobfuscate">
<Copy SourceFiles="$(OutputPath)reobfuscated/$(AssemblyName)-$(GameVersion).dll" DestinationFolder="$(AmongUs)/BepInEx/plugins/" Condition="'$(Configuration)' == 'Debug'" />
</Target>
</Project>