forked from burkeholland/RecordMe
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathRecordMe.csproj
More file actions
23 lines (20 loc) · 876 Bytes
/
RecordMe.csproj
File metadata and controls
23 lines (20 loc) · 876 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>net8.0-windows</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<UseWPF>true</UseWPF>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="CommunityToolkit.Mvvm" Version="8.3.2" />
<PackageReference Include="Magick.NET-Q8-AnyCPU" Version="14.4.0" />
<PackageReference Include="Microsoft.Windows.CsWin32" Version="0.3.106">
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
</PackageReference>
<PackageReference Include="System.Drawing.Common" Version="8.0.11" />
<PackageReference Include="WPF-UI" Version="3.0.5" />
</ItemGroup>
</Project>