update gitignore and add files for nuget configuration

This commit is contained in:
Andrew Welker
2020-06-16 16:13:11 -06:00
parent eb35f0197a
commit 9930117668
3 changed files with 35 additions and 1 deletions

4
.gitignore vendored
View File

@@ -20,4 +20,6 @@ obj/
[Rr]elease*/
_ReSharper*/
SIMPLSharpLogs/
*.projectinfo
*.projectinfo
*.nupkg
lib/

View File

@@ -0,0 +1,20 @@
<?xml version="1.0" encoding="utf-8"?>
<package >
<metadata>
<id>PepperDashCore</id>
<version>1.0.37</version>
<title>PepperDash Core</title>
<authors>PepperDash Technologies</authors>
<owners>pepperdash</owners>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<license type="expression">MIT</license>
<projectUrl>https://github.com/PepperDash/PepperDashCore</projectUrl>
<copyright>Copyright 2020</copyright>
<description>Some text here</description>
<tags>crestron 3series 4series</tags>
<repository type="git" url="https://github.com/PepperDash/PepperDashCore"/>
</metadata>
<files>
<file src="bin\**" target="lib\net35"/>
</files>
</package>

View File

@@ -0,0 +1,12 @@
<configuration>
<packageSources>
<clear />
<add key="github" value="https://nuget.pkg.github.com/PepperDash/index.json" />
</packageSources>
<packageSourceCredentials>
<github>
<add key="Username" value="andrew-welker" />
<add key="ClearTextPassword" value="0aa1cff711365cbf6418f085e9c6757ca5e60d41" />
</github>
</packageSourceCredentials>
</configuration>