mirror of
https://github.com/jkocon/g-helper.git
synced 2026-02-23 13:00:52 +01:00
51 lines
2.2 KiB
XML
51 lines
2.2 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
<PropertyGroup>
|
|
<TargetFrameworks>netstandard2.0;net45</TargetFrameworks>
|
|
<Version>0.8.1.101</Version>
|
|
<Company>falahati.net</Company>
|
|
<Description>NvAPIWrapper is a .Net wrapper for NVIDIA public API</Description>
|
|
<Authors>Soroush Falahati</Authors>
|
|
<Copyright>Copyright © Soroush Falahati 2018 (falahati.net)</Copyright>
|
|
<Platforms>AnyCPU</Platforms>
|
|
<Product>NvAPIWrapper.Net</Product>
|
|
<PackageProjectUrl>https://github.com/falahati/NvAPIWrapper</PackageProjectUrl>
|
|
<PackageLicenseUrl>https://github.com/falahati/NvAPIWrapper/blob/master/LICENSE</PackageLicenseUrl>
|
|
<PackageIconUrl>https://github.com/falahati/NvAPIWrapper/blob/master/NvAPIWrapper/Icon.png?raw=true</PackageIconUrl>
|
|
<IncludeSymbols>true</IncludeSymbols>
|
|
<IncludeSource>true</IncludeSource>
|
|
<PlatformTarget>AnyCPU</PlatformTarget>
|
|
<Title>NvAPIWrapper (for NVAPI 410)</Title>
|
|
<PackageId>NvAPIWrapper.Net</PackageId>
|
|
<AssemblyOriginatorKeyFile>OpenSourceStrongNameSignKey.pfx</AssemblyOriginatorKeyFile>
|
|
</PropertyGroup>
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
|
|
<OutputPath>..\Debug</OutputPath>
|
|
</PropertyGroup>
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
|
|
<BumpRevision>True</BumpRevision>
|
|
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
|
|
<OutputPath>..\Release</OutputPath>
|
|
<DocumentationFile>..\Release\NvAPIWrapper.xml</DocumentationFile>
|
|
<SignAssembly>true</SignAssembly>
|
|
</PropertyGroup>
|
|
<ItemGroup>
|
|
<PackageReference PrivateAssets="all" Include="MSBump" Version="2.3.2">
|
|
<PrivateAssets>all</PrivateAssets>
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
|
|
</PackageReference>
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<Content Include="readme.txt">
|
|
<Pack>true</Pack>
|
|
<PackagePath>\</PackagePath>
|
|
</Content>
|
|
<Content Include="Icon.png">
|
|
<Pack>true</Pack>
|
|
<PackagePath>\</PackagePath>
|
|
</Content>
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<None Include="..\.editorconfig" Link=".editorconfig" />
|
|
</ItemGroup>
|
|
</Project> |