-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathYongAnFrame.csproj
More file actions
80 lines (78 loc) · 2.98 KB
/
YongAnFrame.csproj
File metadata and controls
80 lines (78 loc) · 2.98 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<Nullable>enable</Nullable>
<LangVersion>latest</LangVersion>
<TargetFramework>net48</TargetFramework>
<PlatformTarget>x64</PlatformTarget>
<GenerateDocumentationFile>True</GenerateDocumentationFile>
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
<NeutralLanguage>zh-Hans</NeutralLanguage>
<SignAssembly>False</SignAssembly>
<VersionPrefix>1.0.0-beta6</VersionPrefix>
<Authors>YongAn404</Authors>
<Company>$(Authors)</Company>
<Copyright>Copyright © YongAn404</Copyright>
<Title>$(AssemblyName)</Title>
<AssemblyVersion>1.0.0.0</AssemblyVersion>
<FileVersion>1.0.0.0</FileVersion>
<ImplicitUsings>disable</ImplicitUsings>
<PackageRequireLicenseAcceptance>True</PackageRequireLicenseAcceptance>
<PackageLicenseExpression>LGPL-3.0-only</PackageLicenseExpression>
<PackageReadmeFile>README.md</PackageReadmeFile>
<RepositoryType>git</RepositoryType>
<PackageTags>EXILED;SCPSL;SCP:SL</PackageTags>
<RepositoryUrl>https://github.com/YongAn404/YongAnFrame</RepositoryUrl>
<PackageProjectUrl>https://github.com/YongAn404/YongAnFrame</PackageProjectUrl>
</PropertyGroup>
<ItemGroup>
<Compile Remove="lib\**" />
<EmbeddedResource Remove="lib\**" />
<None Remove="lib\**" />
</ItemGroup>
<ItemGroup>
<None Remove=".gitattributes" />
<None Remove=".gitignore" />
<None Remove="LICENSE.txt" />
</ItemGroup>
<ItemGroup>
<None Include=".github\workflows\dev.yml" />
<None Include=".github\workflows\docs.yml" />
<None Include=".github\workflows\master.yml" />
</ItemGroup>
<ItemGroup>
<None Update="README.md">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
<None Include="$(OutputPath)\HintServiceMeow-Exiled.dll">
<Pack>True</Pack>
<PackagePath>lib\$(TargetFramework)\HintServiceMeow-Exiled.dll</PackagePath>
</None>
</ItemGroup>
<ItemGroup>
<PackageReference Include="ExMod.Exiled" Version="9.6.1" />
<PackageReference Include="Lib.Harmony" Version="2.3.6" />
<PackageReference Include="MengXinSheQu.AudioApi" Version="0.0.5" />
</ItemGroup>
<ItemGroup>
<Reference Include="Assembly-CSharp-firstpass">
<HintPath>lib\$(TargetFramework)\Assembly-CSharp-firstpass.dll</HintPath>
<Private>False</Private>
</Reference>
<Reference Include="HintServiceMeow">
<HintPath>lib\$(TargetFramework)\HintServiceMeow-Exiled.dll</HintPath>
</Reference>
<Reference Include="Mirror">
<HintPath>lib\$(TargetFramework)\Mirror.dll</HintPath>
<Private>False</Private>
</Reference>
<Reference Include="UnityEngine.CoreModule">
<HintPath>lib\$(TargetFramework)\UnityEngine.CoreModule.dll</HintPath>
<Private>False</Private>
</Reference>
<Reference Include="UnityEngine.PhysicsModule">
<HintPath>lib\$(TargetFramework)\UnityEngine.PhysicsModule.dll</HintPath>
<Private>False</Private>
</Reference>
</ItemGroup>
</Project>