Skip to content

Commit

Permalink
Added nuget package config
Browse files Browse the repository at this point in the history
  • Loading branch information
ZsoltGajdacs committed Mar 2, 2021
1 parent c23f47c commit e1e316d
Show file tree
Hide file tree
Showing 5 changed files with 25 additions and 2 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,4 @@ bin/
obj/
packages/
.sonarqube/
*.nupkg
4 changes: 2 additions & 2 deletions Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@
// set of attributes. Change these attribute values to modify the information
// associated with an assembly.
[assembly: AssemblyTitle("UsageWatcher")]
[assembly: AssemblyDescription("")]
[assembly: AssemblyDescription("A simple way to watch mouse and keyboard usage for tracking purposes")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("ZsGWorks")]
[assembly: AssemblyProduct("UsageWatcher")]
[assembly: AssemblyCopyright("Copyright © ZsGWorks 2020")]
[assembly: AssemblyCopyright("Copyright © ZsGWorks 2021")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]

Expand Down
2 changes: 2 additions & 0 deletions UsageWatcher.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -107,5 +107,7 @@
<Error Condition="!Exists('packages\Microsoft.NetCore.Analyzers.3.3.0\build\Microsoft.NetCore.Analyzers.props')" Text="$([System.String]::Format('$(ErrorText)', 'packages\Microsoft.NetCore.Analyzers.3.3.0\build\Microsoft.NetCore.Analyzers.props'))" />
<Error Condition="!Exists('packages\Microsoft.NetFramework.Analyzers.3.3.0\build\Microsoft.NetFramework.Analyzers.props')" Text="$([System.String]::Format('$(ErrorText)', 'packages\Microsoft.NetFramework.Analyzers.3.3.0\build\Microsoft.NetFramework.Analyzers.props'))" />
<Error Condition="!Exists('packages\Microsoft.CodeAnalysis.FxCopAnalyzers.3.3.0\build\Microsoft.CodeAnalysis.FxCopAnalyzers.props')" Text="$([System.String]::Format('$(ErrorText)', 'packages\Microsoft.CodeAnalysis.FxCopAnalyzers.3.3.0\build\Microsoft.CodeAnalysis.FxCopAnalyzers.props'))" />
<Error Condition="!Exists('packages\NuGet.Build.Tasks.Pack.5.8.1\build\NuGet.Build.Tasks.Pack.targets')" Text="$([System.String]::Format('$(ErrorText)', 'packages\NuGet.Build.Tasks.Pack.5.8.1\build\NuGet.Build.Tasks.Pack.targets'))" />
</Target>
<Import Project="packages\NuGet.Build.Tasks.Pack.5.8.1\build\NuGet.Build.Tasks.Pack.targets" Condition="Exists('packages\NuGet.Build.Tasks.Pack.5.8.1\build\NuGet.Build.Tasks.Pack.targets')" />
</Project>
19 changes: 19 additions & 0 deletions UsageWatcher.nuspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
<?xml version="1.0" encoding="utf-8"?>
<package >
<metadata>
<id>ZsGWorks.UsageWatcher</id>
<version>1.2.1.0</version>
<title>UsageWatcher</title>
<authors>Zsolt Gajdács</authors>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<license type="expression">GPL-3.0-or-later</license>
<projectUrl>https://github.com/ZsoltGajdacs/UsageWatcher</projectUrl>
<description>A simple way to watch mouse and keyboard usage for tracking purposes</description>
<releaseNotes>Initial NuGet release</releaseNotes>
<copyright>$copyright$</copyright>
<tags>usage usage-logger pc-usage</tags>
<dependencies>
<group targetFramework=".NETFramework4.8" />
</dependencies>
</metadata>
</package>
1 change: 1 addition & 0 deletions packages.config
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,6 @@
<package id="Microsoft.NetCore.Analyzers" version="3.3.0" targetFramework="net48" developmentDependency="true" />
<package id="Microsoft.NetFramework.Analyzers" version="3.3.0" targetFramework="net48" developmentDependency="true" />
<package id="Newtonsoft.Json" version="12.0.3" targetFramework="net48" />
<package id="NuGet.Build.Tasks.Pack" version="5.8.1" targetFramework="net48" developmentDependency="true" />
<package id="System.ComponentModel.Annotations" version="5.0.0" targetFramework="net48" />
</packages>

0 comments on commit e1e316d

Please sign in to comment.