-
Notifications
You must be signed in to change notification settings - Fork 0
/
LinuxNote.csproj
executable file
·28 lines (28 loc) · 1.16 KB
/
LinuxNote.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>
<AssemblyName>FlipnoteEncoder</AssemblyName>
<OutputType>Exe</OutputType>
<TargetFramework>net8.0</TargetFramework>
<Optimize>false</Optimize>
<IncludeAllContentForSelfExtract>true</IncludeAllContentForSelfExtract>
<DebugType>embedded</DebugType>
<PublishSingleFile>true</PublishSingleFile>
<SelfContained>true</SelfContained>
<PublishTrimmed>true</PublishTrimmed>
</PropertyGroup>
<ItemGroup>
<Reference Include="PPMLib">
<HintPath>/home/sarah/RiderProjects/PPMLib/bin/Debug/net8.0/PPMLib.dll</HintPath>
</Reference>
</ItemGroup>
<ItemGroup>
<PackageReference Include="FFMpegCore" Version="4.1.0"/>
<PackageReference Include="Octokit" Version="0.50.0"/>
<PackageReference Include="Newtonsoft.Json" Version="13.0.1"/>
<PackageReference Include="SixLabors.ImageSharp" Version="3.1.1" />
<PackageReference Include="NAudio" Version="2.2.1"/>
<PackageReference Include="NAudio.Core" Version="2.2.1"/>
<PackageReference Include="ManyConsole" Version="2.0.1"/>
<PackageReference Include="NDesk.Options.Core" Version="1.2.5"/>
</ItemGroup>
</Project>