forked from amoamare/PS5CodeReader
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPS5CodeReader.csproj
More file actions
33 lines (28 loc) · 1.1 KB
/
PS5CodeReader.csproj
File metadata and controls
33 lines (28 loc) · 1.1 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>net7.0-windows</TargetFramework>
<Nullable>enable</Nullable>
<UseWindowsForms>true</UseWindowsForms>
<ImplicitUsings>enable</ImplicitUsings>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<AssemblyVersion>1.2.1.0</AssemblyVersion>
<NeutralLanguage>en-US</NeutralLanguage>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.VisualStudio.Threading" Version="17.8.14" />
<PackageReference Include="System.IO.Ports" Version="8.0.0" />
<PackageReference Include="System.Net.Http.Json" Version="8.0.0" />
<PackageReference Include="Vanara.PInvoke.CfgMgr32" Version="4.0.0-beta" />
<PackageReference Include="Vanara.PInvoke.SetupAPI" Version="4.0.0-beta" />
<PackageReference Include="Vanara.SystemServices" Version="4.0.0-beta" />
</ItemGroup>
<ItemGroup>
<Folder Include="Properties\" />
</ItemGroup>
<ItemGroup>
<Compile Update="ReadOnlyRichTextBox.cs">
<SubType>Component</SubType>
</Compile>
</ItemGroup>
</Project>