forked from nefarius/Nefarius.Utilities.DeviceManagement
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathNefarius.Utilities.DeviceManagement.csproj
33 lines (29 loc) · 1.29 KB
/
Nefarius.Utilities.DeviceManagement.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
32
33
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<AllowUnsafeBlocks>True</AllowUnsafeBlocks>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<Version>1.0.0</Version>
<PackageIcon>NSS-128x128.png</PackageIcon>
<PackageIconUrl />
<RepositoryUrl>https://github.com/nefarius/Nefarius.Utilities.DeviceManagement</RepositoryUrl>
<PackageProjectUrl>https://github.com/nefarius/Nefarius.Utilities.DeviceManagement</PackageProjectUrl>
<Authors>Benjamin Höglinger-Stelzer</Authors>
<OutputPath>$(SolutionDir)bin\</OutputPath>
<Copyright>Copyright © Benjamin Höglinger-Stelzer 2022</Copyright>
<LangVersion>latest</LangVersion>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<Description>Managed wrappers around SetupAPI, Cfgmgr32, NewDev and DrvStore native APIs on Windows.</Description>
</PropertyGroup>
<ItemGroup>
<None Include="assets\NSS-128x128.png">
<Pack>True</Pack>
<PackagePath></PackagePath>
</None>
</ItemGroup>
<ItemGroup>
<PackageReference Include="PInvoke.Kernel32" Version="0.7.104" />
<PackageReference Include="PInvoke.User32" Version="0.7.104" />
</ItemGroup>
</Project>