-
Notifications
You must be signed in to change notification settings - Fork 34
/
Copy pathEther-IL2CPP.csproj
36 lines (31 loc) · 995 Bytes
/
Ether-IL2CPP.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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Library</OutputType>
<TargetFrameworks>net6.0;net481</TargetFrameworks>
<RootNamespace>Ether-IL2CPP</RootNamespace>
<LangVersion>latest</LangVersion>
<ImplicitUsings>disable</ImplicitUsings>
<Nullable>enable</Nullable>
<BaseOutputPath></BaseOutputPath>
<PlatformTarget>x64</PlatformTarget>
<RunPostBuildEvent>Always</RunPostBuildEvent>
<StartupObject></StartupObject>
</PropertyGroup>
<ItemGroup>
<Compile Remove="img\**" />
<Compile Remove="src-res\**" />
<EmbeddedResource Remove="img\**" />
<EmbeddedResource Remove="src-res\**" />
<None Remove="img\**" />
<None Remove="src-res\**" />
</ItemGroup>
<ItemGroup>
<None Remove="README.md" />
<None Remove="README_zh-cn.md" />
</ItemGroup>
<ItemGroup>
<Reference Include="dnlib">
<HintPath>..\Ether_Obfuscator\plugin\dnlib.dll</HintPath>
</Reference>
</ItemGroup>
</Project>