Add package on Github packages.

This commit is contained in:
Denis-Cosmin Nutiu 2021-04-11 15:47:22 +03:00
parent e0eae52d85
commit ae62eff060
2 changed files with 15 additions and 1 deletions

View file

@ -4,11 +4,12 @@
<OutputType>Exe</OutputType>
<TargetFramework>netcoreapp3.1</TargetFramework>
<PackageId>PMS5003</PackageId>
<Version>1.0.3</Version>
<Version>1.0.4</Version>
<Authors>Denis Nutiu</Authors>
<Company>NucuLabs.dev</Company>
<Description>C# Library for interfacing with the PMS5003 Particulate Matter Sensor.</Description>
<Licence>https://www.gnu.org/licenses/gpl-3.0.en.html</Licence>
<RepositoryUrl>https://github.com/dnutiu/pms5003</RepositoryUrl>
</PropertyGroup>
<ItemGroup>

13
PMS5003/nuget.config Normal file
View file

@ -0,0 +1,13 @@
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<packageSources>
<clear />
<add key="github" value="https://nuget.pkg.github.com/dnutiu/index.json" />
</packageSources>
<packageSourceCredentials>
<github>
<add key="Username" value="dnutiu" />
<add key="ClearTextPassword" value="xxx" />
</github>
</packageSourceCredentials>
</configuration>