-
Notifications
You must be signed in to change notification settings - Fork 1
/
SMAPIStardewValley.csproj
111 lines (104 loc) · 4.83 KB
/
SMAPIStardewValley.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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net8.0-android</TargetFramework>
<SupportedOSPlatformVersion>21</SupportedOSPlatformVersion>
<OutputType>Exe</OutputType>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<ApplicationId>app.SMAPIStardew</ApplicationId>
<ApplicationVersion>1</ApplicationVersion>
<ApplicationDisplayVersion>1.0</ApplicationDisplayVersion>
<AssemblyName>SMAPIStardewValley</AssemblyName>
<AllowUnsafeBlocks>True</AllowUnsafeBlocks>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<RunAOTCompilation>False</RunAOTCompilation>
<PublishTrimmed>False</PublishTrimmed>
<Optimize>False</Optimize>
<AndroidPackageFormat>apk</AndroidPackageFormat>
<DebugSymbols>True</DebugSymbols>
<IsTrimmable>False</IsTrimmable>
<AndroidUseAapt2>True</AndroidUseAapt2>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<IsTrimmable>False</IsTrimmable>
<Optimize>False</Optimize>
<AndroidUseAapt2>True</AndroidUseAapt2>
</PropertyGroup>
<ItemGroup>
<!-- Removing unwanted files -->
<AndroidJavaSource Remove="0Harmony\**" />
<AndroidLibrary Remove="0Harmony\**" />
<AndroidNativeLibrary Remove="0Harmony\**" />
<Compile Remove="0Harmony\**" />
<EmbeddedResource Remove="0Harmony\**" />
<JavaSourceJar Remove="0Harmony\**" />
<None Remove="0Harmony\**" />
<ProguardConfiguration Remove="0Harmony\**" />
<TransformFile Remove="0Harmony\**" />
</ItemGroup>
<ItemGroup>
<Compile Remove="AssemblyStoreAssembly.cs" />
</ItemGroup>
<ItemGroup>
<!-- Remove specific files -->
<None Remove="Assets\Buildings.xnb" />
<None Remove="Assets\dotnet.zip" />
<None Remove="Lib\arm64-v8a\liblwjgl_lz4.so" />
<None Remove="Resources\Drawable\bg_page.xml" />
<None Remove="Resources\Drawable\circular_button_background.xml" />
<None Remove="Resources\Drawable\circular_button_background1.xml" />
<None Remove="Resources\Drawable\ic_game.xml" />
<None Remove="Resources\Drawable\ic_install.png" />
<None Remove="Resources\Drawable\ic_launcher.png" />
<None Remove="Resources\Drawable\ic_mod.xml" />
<None Remove="Resources\Drawable\ic_setting.xml" />
<None Remove="Resources\layout\activity_main.xml" />
<None Remove="Resources\layout\fragment_game.xml" />
<None Remove="Resources\layout\fragment_setting.xml" />
<None Remove="Resources\menu\fragment_mod.xml" />
<None Remove="Resources\mipmap\ic_launcher.png" />
<None Remove="Resources\Values\themes.xml" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="dnlib" Version="4.4.0" />
<PackageReference Include="K4os.Compression.LZ4" Version="1.3.8" />
<PackageReference Include="Krafs.Publicizer" Version="2.2.1">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="SharpZipLib.NETStandard" Version="1.0.7" />
<PackageReference Include="SkiaSharp" Version="2.88.9" />
<PackageReference Include="Xamarin.AndroidX.AppCompat" Version="1.7.0.4" />
<PackageReference Include="Xamarin.AndroidX.CoordinatorLayout" Version="1.2.0.18" />
<PackageReference Include="Xamarin.AndroidX.Core" Version="1.15.0.1" />
<PackageReference Include="Xamarin.AndroidX.DocumentFile" Version="1.0.1.30" />
<PackageReference Include="Xamarin.AndroidX.Fragment" Version="1.8.5.1" />
<PackageReference Include="Xamarin.Google.Android.Material" Version="1.12.0.1" />
<PackageReference Include="Xamarin.Google.Android.Material.Compose.Theme.Adapter" Version="1.1.18.16" />
</ItemGroup>
<!-- Add references to external assemblies -->
<ItemGroup>
<Reference Include="Mono.Cecil">
<HintPath>..\..\..\下载\Harmony-master\Harmony-master\Harmony\bin\DebugThin\net8.0\Mono.Cecil.dll</HintPath>
</Reference>
<Reference Include="Mono.Cecil.Mdb">
<HintPath>..\..\..\下载\Harmony-master\Harmony-master\Harmony\bin\DebugThin\net8.0\Mono.Cecil.Mdb.dll</HintPath>
</Reference>
<Reference Include="Mono.Cecil.Pdb">
<HintPath>..\..\..\下载\Harmony-master\Harmony-master\Harmony\bin\DebugThin\net8.0\Mono.Cecil.Pdb.dll</HintPath>
</Reference>
<Reference Include="Mono.Cecil.Rocks">
<HintPath>..\..\..\下载\Harmony-master\Harmony-master\Harmony\bin\DebugThin\net8.0\Mono.Cecil.Rocks.dll</HintPath>
</Reference>
<Reference Include="MonoGame.Framework">
<HintPath>..\..\..\下载\SMAPI-develop (5)\SMAPI-develop\src\SMAPI\bin\Release\MonoGame.Framework.dll</HintPath>
</Reference>
<Reference Include="StardewModdingAPI">
<HintPath>..\..\..\下载\SMAPI-develop (5)\SMAPI-develop\src\SMAPI\bin\Release\StardewModdingAPI.dll</HintPath>
</Reference>
<Reference Include="xTile">
<HintPath>..\..\..\Stardew Assemblies\Stardew Assemblies\xTile.dll</HintPath>
</Reference>
</ItemGroup>
</Project>