-
Notifications
You must be signed in to change notification settings - Fork 28
Expand file tree
/
Copy pathSecureBootInspector.csproj
More file actions
25 lines (22 loc) · 912 Bytes
/
Copy pathSecureBootInspector.csproj
File metadata and controls
25 lines (22 loc) · 912 Bytes
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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>net8.0-windows</TargetFramework>
<Nullable>enable</Nullable>
<UseWindowsForms>true</UseWindowsForms>
<ImplicitUsings>enable</ImplicitUsings>
<AssemblyName>SecureBootInspector</AssemblyName>
<RootNamespace>SecureBootInspector</RootNamespace>
<Version>1.0.0</Version>
<Authors>Dr. René Bäder (PhDs)</Authors>
<Copyright>Copyright by Dr. René Bäder (PhDs)</Copyright>
<PackageLicenseExpression>GPL-3.0-or-later</PackageLicenseExpression>
</PropertyGroup>
<ItemGroup>
<Content Include="Assets\SecureBootInspector.ico">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
<CopyToPublishDirectory>PreserveNewest</CopyToPublishDirectory>
<TargetPath>SecureBootInspector.ico</TargetPath>
</Content>
</ItemGroup>
</Project>