forked from ppy/SDL2-CS
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
trifonovaa
authored and
trifonovaa
committed
May 1, 2024
1 parent
df1dafa
commit 7bc7c14
Showing
3 changed files
with
76 additions
and
73 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,68 +1,71 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
<PropertyGroup> | ||
<TargetFramework>netstandard2.0</TargetFramework> | ||
<OutputType>Library</OutputType> | ||
<AllowUnsafeBlocks>true</AllowUnsafeBlocks> | ||
<AssemblyTitle>NAudio.Sdl2.Library</AssemblyTitle> | ||
<AssemblyName>NAudio.Sdl2.Library</AssemblyName> | ||
<Description>libSDL2 native libraries for C#</Description> | ||
<RootNamespace>NAudio.Sdl2.Library</RootNamespace> | ||
<GenerateAssemblyInfo>false</GenerateAssemblyInfo> | ||
<PackageReadmeFile>README.md</PackageReadmeFile> | ||
</PropertyGroup> | ||
<PropertyGroup Label="NuGet"> | ||
<Authors>ppy Pty Ltd & flibitijibibo & alextnull</Authors> | ||
<Title>NAudio.Sdl2.Library</Title> | ||
<PackageId>NAudio.Sdl2.Library</PackageId> | ||
<PackageProjectUrl>https://github.com/alextnull/NAudio.Sdl2.Library</PackageProjectUrl> | ||
<RepositoryUrl>https://github.com/alextnull/NAudio.Sdl2.Library</RepositoryUrl> | ||
</PropertyGroup> | ||
<ItemGroup> | ||
<None Include="README.md" Pack="true" PackagePath="\"/> | ||
<Content Include="$(MSBuildThisFileDirectory)native\win-x64\SDL2.dll"> | ||
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> | ||
<PackagePath>runtimes/win-x64/native</PackagePath> | ||
<Pack>true</Pack> | ||
</Content> | ||
<Content Include="$(MSBuildThisFileDirectory)native\win-arm64\SDL2.dll"> | ||
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> | ||
<PackagePath>runtimes/win-arm64/native</PackagePath> | ||
<Pack>true</Pack> | ||
</Content> | ||
<Content Include="$(MSBuildThisFileDirectory)native\win-x86\SDL2.dll"> | ||
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> | ||
<PackagePath>runtimes/win-x86/native</PackagePath> | ||
<Pack>true</Pack> | ||
</Content> | ||
<Content Include="$(MSBuildThisFileDirectory)native\osx-x64\libSDL2.dylib"> | ||
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> | ||
<PackagePath>runtimes/osx-x64/native</PackagePath> | ||
<Pack>true</Pack> | ||
</Content> | ||
<Content Include="$(MSBuildThisFileDirectory)native\osx-arm64\libSDL2.dylib"> | ||
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> | ||
<PackagePath>runtimes/osx-arm64/native</PackagePath> | ||
<Pack>true</Pack> | ||
</Content> | ||
<Content Include="$(MSBuildThisFileDirectory)native\linux-x64\libSDL2.so"> | ||
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> | ||
<PackagePath>runtimes/linux-x64/native</PackagePath> | ||
<Pack>true</Pack> | ||
</Content> | ||
<Content Include="$(MSBuildThisFileDirectory)native\linux-x86\libSDL2.so"> | ||
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> | ||
<PackagePath>runtimes/linux-x86/native</PackagePath> | ||
<Pack>true</Pack> | ||
</Content> | ||
<Content Include="$(MSBuildThisFileDirectory)native\ios\**\*"> | ||
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> | ||
<PackagePath>runtimes/ios/native</PackagePath> | ||
<Pack>true</Pack> | ||
</Content> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<Content Include="app.config"> | ||
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> | ||
</Content> | ||
</ItemGroup> | ||
</Project> | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
<PropertyGroup> | ||
<TargetFramework>netstandard2.0</TargetFramework> | ||
<OutputType>Library</OutputType> | ||
<AllowUnsafeBlocks>true</AllowUnsafeBlocks> | ||
<AssemblyTitle>NAudio.Sdl2.Library</AssemblyTitle> | ||
<AssemblyName>NAudio.Sdl2.Library</AssemblyName> | ||
<Description>libSDL2 native libraries for C#</Description> | ||
<RootNamespace>NAudio.Sdl2.Library</RootNamespace> | ||
<GenerateAssemblyInfo>false</GenerateAssemblyInfo> | ||
<PackageReadmeFile>README.md</PackageReadmeFile> | ||
</PropertyGroup> | ||
<PropertyGroup Label="NuGet"> | ||
<Authors>ppy Pty Ltd & flibitijibibo & alextnull</Authors> | ||
<Title>NAudio.Sdl2.Library</Title> | ||
<PackageId>NAudio.Sdl2.Library</PackageId> | ||
<PackageProjectUrl>https://github.com/alextnull/NAudio.Sdl2.Library</PackageProjectUrl> | ||
<RepositoryUrl>https://github.com/alextnull/NAudio.Sdl2.Library</RepositoryUrl> | ||
<AssemblyVersion>2.25.1</AssemblyVersion> | ||
<FileVersion>2.25.1</FileVersion> | ||
<Version>2.25.1</Version> | ||
</PropertyGroup> | ||
<ItemGroup> | ||
<None Include="README.md" Pack="true" PackagePath="\" /> | ||
<Content Include="$(MSBuildThisFileDirectory)native\win-x64\SDL2.dll"> | ||
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> | ||
<PackagePath>runtimes/win-x64/native</PackagePath> | ||
<Pack>true</Pack> | ||
</Content> | ||
<Content Include="$(MSBuildThisFileDirectory)native\win-arm64\SDL2.dll"> | ||
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> | ||
<PackagePath>runtimes/win-arm64/native</PackagePath> | ||
<Pack>true</Pack> | ||
</Content> | ||
<Content Include="$(MSBuildThisFileDirectory)native\win-x86\SDL2.dll"> | ||
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> | ||
<PackagePath>runtimes/win-x86/native</PackagePath> | ||
<Pack>true</Pack> | ||
</Content> | ||
<Content Include="$(MSBuildThisFileDirectory)native\osx-x64\libSDL2.dylib"> | ||
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> | ||
<PackagePath>runtimes/osx-x64/native</PackagePath> | ||
<Pack>true</Pack> | ||
</Content> | ||
<Content Include="$(MSBuildThisFileDirectory)native\osx-arm64\libSDL2.dylib"> | ||
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> | ||
<PackagePath>runtimes/osx-arm64/native</PackagePath> | ||
<Pack>true</Pack> | ||
</Content> | ||
<Content Include="$(MSBuildThisFileDirectory)native\linux-x64\libSDL2.so"> | ||
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> | ||
<PackagePath>runtimes/linux-x64/native</PackagePath> | ||
<Pack>true</Pack> | ||
</Content> | ||
<Content Include="$(MSBuildThisFileDirectory)native\linux-x86\libSDL2.so"> | ||
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> | ||
<PackagePath>runtimes/linux-x86/native</PackagePath> | ||
<Pack>true</Pack> | ||
</Content> | ||
<Content Include="$(MSBuildThisFileDirectory)native\ios\**\*"> | ||
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> | ||
<PackagePath>runtimes/ios/native</PackagePath> | ||
<Pack>true</Pack> | ||
</Content> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<Content Include="app.config"> | ||
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> | ||
</Content> | ||
</ItemGroup> | ||
</Project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters