Skip to content

Commit

Permalink
Specify nuget properties in csproj instead of nuspec
Browse files Browse the repository at this point in the history
  • Loading branch information
Cedd Burge committed Dec 20, 2018
1 parent 533fe38 commit 1835b06
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 14 deletions.
11 changes: 11 additions & 0 deletions RES.Configuration/RES.Configuration.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,17 @@
<TargetFramework>netstandard2.0</TargetFramework>
<BaseOutputPath>..\BuiltDLLs\</BaseOutputPath>
<Version>2.0.0</Version>
<Authors>RES</Authors>
<title>RES.Configuration</title>
<description>Strongly typed Configuration with validation. Has the following benefits. There are no magic strings, so any misspellings will be caught at compile time. Refactoring tools (eg rename), can be used and guarantee that all instances are updated. All references to an item of configuration can be easily found using Visual Studio. Code is explicit about the configuration it requires, and can define only the subset of the configuration that it needs. Configuration files can be checked to see if they contain all the required information. Configuration logic, such as defaults and conversion is handled centrally. Configuration items are guaranteed to have the same name in the config file and in the code</description>
<PackageProjectUrl>https://github.com/resgroup/configuration</PackageProjectUrl>
<RepositoryUrl>https://github.com/resgroup/configuration</RepositoryUrl>
<PackageLicenseUrl>https://raw.githubusercontent.com/resgroup/configuration/master/LICENSE</PackageLicenseUrl>
<PackageIconUrl>https://raw.githubusercontent.com/resgroup/configuration/master/RES.Configuration/configuration.png</PackageIconUrl>
<PackageReleaseNotes>Version 2.0.0 targets .Net Standard 2.0 and so can be used in .Net Core Projects. A new ConfigurationGetter (GetFromConfiguration) is available to work with the .Net Core configuration system (Microsoft.Extensions.Configuration)</PackageReleaseNotes>
<PackageTags>Configuration</PackageTags>
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>
<RepositoryType>git</RepositoryType>
</PropertyGroup>

<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
Expand Down
14 changes: 0 additions & 14 deletions RES.Configuration/RES.Configuration.nuspec

This file was deleted.

0 comments on commit 1835b06

Please sign in to comment.