-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCPU Password Generator.csproj
More file actions
54 lines (46 loc) · 1.82 KB
/
CPU Password Generator.csproj
File metadata and controls
54 lines (46 loc) · 1.82 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>net9.0-windows10.0.26100.0</TargetFramework>
<RootNamespace>CPU_Password_Generator</RootNamespace>
<ImplicitUsings>disable</ImplicitUsings>
<Nullable>enable</Nullable>
<PublishAot>true</PublishAot>
<InvariantGlobalization>true</InvariantGlobalization>
<_SuppressWinFormsTrimError>true</_SuppressWinFormsTrimError>
<SupportedOSPlatformVersion>10.0.19041.0</SupportedOSPlatformVersion>
<ApplicationIcon>Resources\shell32_48.ico</ApplicationIcon>
<PlatformTarget>x64</PlatformTarget>
<AllowUnsafeBlocks>True</AllowUnsafeBlocks>
<UseWindowsForms>True</UseWindowsForms>
<Platforms>x64</Platforms>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
<DebugType>none</DebugType>
<GenerateAssemblyInfo>False</GenerateAssemblyInfo>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
<GenerateAssemblyInfo>False</GenerateAssemblyInfo>
</PropertyGroup>
<ItemGroup>
<Compile Remove="libs\**" />
<EmbeddedResource Remove="libs\**" />
<None Remove="libs\**" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="WinFormsComInterop" Version="0.5.0" />
</ItemGroup>
<ItemGroup>
<Reference Include="HWRandom.NET">
<HintPath>libs\HWRandom.NET.dll</HintPath>
</Reference>
<DirectPInvoke Include="HWRandomCore" />
<NativeLibrary Include="libs\HWRandomCore.lib" />
<LinkerArg Include="/LTCG /FIXED:NO /NXCOMPAT /DYNAMICBASE /LARGEADDRESSAWARE /CETCOMPAT" />
</ItemGroup>
<ItemGroup>
<None Update="HWRandomCore.dll">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
</ItemGroup>
</Project>