-
Notifications
You must be signed in to change notification settings - Fork 0
/
SoLoud.NET.csproj
27 lines (25 loc) · 1.15 KB
/
SoLoud.NET.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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard2.1</TargetFramework>
<Nullable>enable</Nullable>
<Title>SoLoud.NET</Title>
<Authors>dungeonneko, Pannoniae</Authors>
<Description>A SoLoud wrapper for .NET.</Description>
<RootNamespace>SoLoud</RootNamespace>
<PackageReadmeFile>README.md</PackageReadmeFile>
<PackageVersion>2020.2.7.1</PackageVersion>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageProjectUrl>https://github.com/Pannoniae/SoLoud.NET</PackageProjectUrl>
</PropertyGroup>
<ItemGroup>
<Content Include="README.md" Pack="true" PackagePath="/">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content>
<Content Include="./libsoloud.so" Pack="true" PackagePath="runtimes/linux-x64/native/">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content>
<Content Include="./soloud.dll" Pack="true" PackagePath="runtimes/win-x64/native/">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content>
</ItemGroup>
</Project>