-
-
Notifications
You must be signed in to change notification settings - Fork 51
Expand file tree
/
Copy pathSoundFlow.Codecs.FFMpeg.csproj
More file actions
56 lines (50 loc) · 2.39 KB
/
SoundFlow.Codecs.FFMpeg.csproj
File metadata and controls
56 lines (50 loc) · 2.39 KB
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<IsAotCompatible>true</IsAotCompatible>
<EnableTrimAnalyzer>true</EnableTrimAnalyzer>
<Title>SoundFlow FFmpeg Codecs</Title>
<PackageId>SoundFlow.Codecs.FFMpeg</PackageId>
<Version>1.4.0</Version>
<Description>Provides FFmpeg-based audio codecs (MP3, AAC, OGG, Opus, etc.) for the SoundFlow audio engine.</Description>
<PackageTags>soundflow;audio;codec;ffmpeg;mp3;aac;ogg;opus</PackageTags>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<Copyright>Copyright (c) 2025 LSXPrime</Copyright>
<PackageProjectUrl>https://github.com/LSXPrime/SoundFlow</PackageProjectUrl>
<PackageLicenseFile>LICENSE.md</PackageLicenseFile>
<RepositoryUrl>https://github.com/LSXPrime/SoundFlow</RepositoryUrl>
<RepositoryType>Github</RepositoryType>
<PackageIcon>logo.png</PackageIcon>
<PackageReadmeFile>README.md</PackageReadmeFile>
<PackageReleaseNotes>https://github.com/LSXPrime/SoundFlow/releases</PackageReleaseNotes>
<Company>LSXPrime</Company>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\..\Src\SoundFlow.csproj" />
</ItemGroup>
<ItemGroup>
<None Include="runtimes\**\*.*">
<Link>runtimes\%(RecursiveDir)%(Filename)%(Extension)</Link>
<PackagePath>runtimes</PackagePath>
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
<Pack>true</Pack>
</None>
<None Include="..\..\SOUNDFLOW-THIRD-PARTY-NOTICES.txt"
Pack="true"
PackagePath="\"
CopyToOutputDirectory="PreserveNewest" />
</ItemGroup>
<ItemGroup>
<None Include="$(PackageId).targets" Pack="true" PackagePath="" />
<None Include="runtimes\**\*" Pack="true" PackagePath="runtimes" />
</ItemGroup>
<ItemGroup>
<None Include="SoundFlow.Codecs.FFMpeg.targets" Pack="true" PackagePath="" />
<None Include="README.md" Pack="true" PackagePath="" />
<None Include="..\..\LICENSE.md" Pack="true" PackagePath="" />
<None Include="..\..\logo.png" Pack="true" PackagePath="" />
</ItemGroup>
</Project>