|
1 | 1 | <Project Sdk="Microsoft.NET.Sdk"> |
2 | 2 |
|
3 | | - <PropertyGroup> |
4 | | - <AllowUnsafeBlocks>true</AllowUnsafeBlocks> |
5 | | - <Authors>Sam Byass (Samboy063)</Authors> |
6 | | - <Configurations>Release;Debug</Configurations> |
7 | | - <DebugType>embedded</DebugType> |
8 | | - <Description>Decoder for FMOD 5 sound banks (FSB files)</Description> |
9 | | - <EmbedUntrackedSources>true</EmbedUntrackedSources> |
10 | | - <GeneratePackageOnBuild>true</GeneratePackageOnBuild> |
11 | | - <IsTrimmable>true</IsTrimmable> |
12 | | - <LangVersion>10</LangVersion> |
13 | | - <Nullable>enable</Nullable> |
14 | | - <PackageId>Fmod5Sharp</PackageId> |
15 | | - <PackageLicenseExpression>MIT</PackageLicenseExpression> |
16 | | - <PackageProjectUrl>https://github.com/SamboyCoding/Fmod5Sharp</PackageProjectUrl> |
17 | | - <PackageTags>fmod;audio</PackageTags> |
18 | | - <Platforms>x86;x64;AnyCPU</Platforms> |
19 | | - <PublishRepositoryUrl>true</PublishRepositoryUrl> |
20 | | - <RepositoryType>git</RepositoryType> |
21 | | - <RepositoryUrl>https://github.com/SamboyCoding/Fmod5Sharp.git</RepositoryUrl> |
22 | | - <TargetFrameworks>net10.0;netstandard2.0</TargetFrameworks> |
23 | | - <Title>FMOD5 Sharp</Title> |
24 | | - <Version>3.0.1</Version> |
25 | | - <ContinuousIntegrationBuild Condition="'$(GITHUB_ACTIONS)' == 'true'">true</ContinuousIntegrationBuild> |
26 | | - </PropertyGroup> |
| 3 | + <PropertyGroup Condition="'$(GITHUB_ACTIONS)' == 'true'"> |
| 4 | + <ContinuousIntegrationBuild>true</ContinuousIntegrationBuild> |
| 5 | + </PropertyGroup> |
27 | 6 |
|
28 | | - <ItemGroup> |
29 | | - <PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.1.1" PrivateAssets="All" /> |
30 | | - <PackageReference Include="IndexRange" Version="1.0.2" /> |
31 | | - <PackageReference Include="NAudio.Core" Version="2.1.0" /> |
32 | | - <PackageReference Include="OggVorbisEncoder" Version="1.2.0" /> |
33 | | - <PackageReference Include="System.Text.Json" Version="10.0.1" /> |
34 | | - </ItemGroup> |
| 7 | + <PropertyGroup> |
| 8 | + <TargetFrameworks>net10.0</TargetFrameworks> |
| 9 | + <LangVersion>latest</LangVersion> |
| 10 | + <Nullable>enable</Nullable> |
| 11 | + <IsTrimmable>true</IsTrimmable> |
| 12 | + <AllowUnsafeBlocks>true</AllowUnsafeBlocks> |
| 13 | + <GeneratePackageOnBuild>false</GeneratePackageOnBuild> |
| 14 | + <GenerateDocumentationFile>false</GenerateDocumentationFile> |
| 15 | + <Version>3.2.0</Version> |
| 16 | + <PackageId>FModel.Fmod5Sharp</PackageId> |
| 17 | + <PackageTags>fmod;audio</PackageTags> |
| 18 | + <Title>FMOD5 Sharp</Title> |
| 19 | + <Description>Decoder for FMOD 5 sound banks (FSB files)</Description> |
| 20 | + <Copyright>Copyright © 2026 FModel</Copyright> |
| 21 | + <PackageLicenseExpression>MIT</PackageLicenseExpression> |
| 22 | + <NeutralLanguage>en</NeutralLanguage> |
| 23 | + <PublishRepositoryUrl>true</PublishRepositoryUrl> |
| 24 | + <EmbedUntrackedSources>true</EmbedUntrackedSources> |
| 25 | + <IncludeSymbols>true</IncludeSymbols> |
| 26 | + <SymbolPackageFormat>snupkg</SymbolPackageFormat> |
| 27 | + <PackageReadmeFile>README.md</PackageReadmeFile> |
| 28 | + </PropertyGroup> |
35 | 29 |
|
36 | | - <ItemGroup> |
37 | | - <None Remove="FmodVorbis\vorbis_headers_converted.json" /> |
38 | | - <EmbeddedResource Include="Util\vorbis_headers_converted.json" /> |
39 | | - </ItemGroup> |
| 30 | + <ItemGroup> |
| 31 | + <None Include="..\README.md" Pack="true" Visible="false" PackagePath="\" /> |
| 32 | + </ItemGroup> |
| 33 | + |
| 34 | + <ItemGroup> |
| 35 | + <PackageReference Include="NAudio.Core" Version="2.2.1" /> |
| 36 | + <PackageReference Include="OggVorbisEncoder" Version="1.2.2" /> |
| 37 | + </ItemGroup> |
| 38 | + |
| 39 | + <ItemGroup> |
| 40 | + <None Remove="FmodVorbis\vorbis_headers_converted.json" /> |
| 41 | + <EmbeddedResource Include="Util\vorbis_headers_converted.json" /> |
| 42 | + </ItemGroup> |
40 | 43 |
|
41 | 44 | </Project> |
0 commit comments