-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathNWN.Native.csproj
28 lines (25 loc) · 1.18 KB
/
NWN.Native.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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>netcoreapp3.1;net5.0;net6.0;net7.0;net8.0</TargetFrameworks>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<RuntimeIdentifier>linux-x64</RuntimeIdentifier>
<AppendRuntimeIdentifierToOutputPath>false</AppendRuntimeIdentifierToOutputPath>
<PackageId>NWN.Native</PackageId>
<Authors>NWN.NET</Authors>
<PackageTags>Neverwinter Nights;NWN;</PackageTags>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<EnableDynamicLoading>true</EnableDynamicLoading>
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
<RepositoryUrl>https://github.com/nwn-dotnet/NWN.Native</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<EmbedUntrackedSources>true</EmbedUntrackedSources>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<NoWarn>108</NoWarn>
</PropertyGroup>
<ItemGroup>
<Compile Remove="src\main\API\ICGameObject.cs" />
<Compile Remove="src\main\API\ICNWItem.cs" />
</ItemGroup>
</Project>