-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathTestPlugin.csproj
35 lines (34 loc) · 1.19 KB
/
TestPlugin.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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>net35;net6</TargetFrameworks>
<LangVersion>Latest</LangVersion>
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
<AppendTargetFrameworkToOutputPath>true</AppendTargetFrameworkToOutputPath>
<OutputPath>Output\$(Configuration)\</OutputPath>
<OutputType>Library</OutputType>
<RootNamespace>TestPlugin</RootNamespace>
<Platforms>AnyCPU</Platforms>
<GeneratePackageOnBuild>false</GeneratePackageOnBuild>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
</PropertyGroup>
<ItemGroup>
<Compile Remove="Libs\**" />
<Compile Remove="Output\**" />
<EmbeddedResource Remove="Libs\**" />
<EmbeddedResource Remove="Output\**" />
<None Remove="Libs\**" />
<None Remove="Output\**" />
</ItemGroup>
<ItemGroup>
<None Remove=".gitignore" />
<None Remove="LICENSE.md" />
<None Remove="README.md" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="LavaGang.MelonLoader" Version="0.6.6">
<PrivateAssets></PrivateAssets>
<ExcludeAssets>Runtime</ExcludeAssets>
</PackageReference>
</ItemGroup>
</Project>