-
Notifications
You must be signed in to change notification settings - Fork 38
/
Copy pathHexBox.csproj
31 lines (31 loc) · 1.14 KB
/
HexBox.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
29
30
31
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>net3.5;net4.8;net8.0-windows</TargetFrameworks>
<OutputType>Library</OutputType>
<StartupObject>
</StartupObject>
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
<UseWindowsForms>true</UseWindowsForms>
<ImportWindowsDesktopTargets>true</ImportWindowsDesktopTargets>
<AllowUnsafeBlocks>False</AllowUnsafeBlocks>
<Platforms>AnyCPU;ARM64</Platforms>
</PropertyGroup>
<ItemGroup>
<Compile Update="BuiltInContextMenu.cs">
<SubType>Component</SubType>
</Compile>
<Compile Update="HexBox.cs">
<SubType>Component</SubType>
</Compile>
</ItemGroup>
<ItemGroup>
<Compile Remove="Properties\Resources.Designer.cs" />
<EmbeddedResource Remove="Properties\Resources.resx" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.DotNet.UpgradeAssistant.Extensions.Default.Analyzers" Version="0.4.421302">
<PrivateAssets>all</PrivateAssets>
</PackageReference>
<PackageReference Include="Microsoft.Windows.Compatibility" Version="9.0.0" />
</ItemGroup>
</Project>