-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCalculator.csproj
More file actions
36 lines (36 loc) · 1.36 KB
/
Copy pathCalculator.csproj
File metadata and controls
36 lines (36 loc) · 1.36 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>net8.0-windows10.0.22000.0</TargetFramework>
<Nullable>enable</Nullable>
<UseWindowsForms>true</UseWindowsForms>
<ImplicitUsings>enable</ImplicitUsings>
<SignAssembly>False</SignAssembly>
<Authors>Snowlights</Authors>
<Company>OS </Company>
<AllowUnsafeBlocks>False</AllowUnsafeBlocks>
<AnalysisLevel>6.0-all</AnalysisLevel>
<ApplicationIcon>Properties\bitbug_favicon.ico</ApplicationIcon>
<SupportedOSPlatformVersion>10.0.17763.0</SupportedOSPlatformVersion>
<NuGetAuditMode>all</NuGetAuditMode>
<NuGetAuditLevel>low</NuGetAuditLevel>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<CheckForOverflowUnderflow>True</CheckForOverflowUnderflow>
<WarningLevel>7</WarningLevel>
<NoWarn />
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<CheckForOverflowUnderflow>True</CheckForOverflowUnderflow>
<WarningLevel>7</WarningLevel>
<NoWarn />
</PropertyGroup>
<ItemGroup>
<Content Include="Properties\bitbug_favicon.ico" />
</ItemGroup>
<ItemGroup>
<None Update="Properties\CASIOClassWizCW01.ttf">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
</ItemGroup>
</Project>