Skip to content

Commit

Permalink
Merge pull request #3 from ClydeDz/dev/v0.0.4
Browse files Browse the repository at this point in the history
Added sample files
  • Loading branch information
ClydeDz authored Feb 11, 2019
2 parents a03861b + d63ed5a commit ecf756e
Show file tree
Hide file tree
Showing 3 changed files with 82 additions and 0 deletions.
26 changes: 26 additions & 0 deletions Src/Sample files/LICENSE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
```
Sample MIT license file.
Replace comments in brackets () with actual values.
Also remove this comment block.
```

The MIT License (MIT)

Copyright (c) (Year) (Author name)

Permission is hereby granted, free of charge, to any person obtaining a copy of
this software and associated documentation files (the "Software"), to deal in
the Software without restriction, including without limitation the rights to
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
the Software, and to permit persons to whom the Software is furnished to do so,
subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
27 changes: 27 additions & 0 deletions Src/Sample files/PackageName.nuspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
<?xml version="1.0" encoding="utf-8"?>
<!--
Basic .nuspec file with ideal metadata elements.
Replace comments in brackets () with actual values. Also remove this comment block.
-->
<package xmlns="http://schemas.microsoft.com/packaging/2013/05/nuspec.xsd">
<metadata>
<id>(Unique ID for the package)</id>
<version>(Semantic versioning for the package. Usually of format Major.Minor.Patch)</version>
<title>(Name of the package)</title>
<authors>(Author name)</authors>
<owners>(Owners name. Comma separated list if multiple owners)</owners>
<requireLicenseAcceptance>(true if you require user to accept license)</requireLicenseAcceptance>
<license type="expression">(SPDX license identifier)</license>
<projectUrl>(Project website)</projectUrl>
<repository url="(Public URL to the code repository. Remove this line if none exists)" />
<iconUrl>(Icon URL for this package. Must be publicly accessible)</iconUrl>
<description>(Description for this NuGet package)</description>
<summary>(A short version of the description)</summary>
<releaseNotes>(Enter release notes here)</releaseNotes>
<copyright>(Copyright (c) Year Author name)</copyright>
<tags>(Space delimited tags)</tags>
<dependencies>
<group targetFramework="(.NETStandard2.0 if this is a .NET standard library)" />
</dependencies>
</metadata>
</package>
29 changes: 29 additions & 0 deletions Src/Sample files/PackageNameWithDependencies.nuspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
<?xml version="1.0" encoding="utf-8"?>
<!--
.nuspec file with dependencies and ideal metadata elements.
Replace comments in brackets () with actual values. Also remove this comment block.
-->
<package xmlns="http://schemas.microsoft.com/packaging/2013/05/nuspec.xsd">
<metadata>
<id>(Unique ID for the package)</id>
<version>(Semantic versioning for the package. Usually of format Major.Minor.Patch)</version>
<title>(Name of the package)</title>
<authors>(Author name)</authors>
<owners>(Owners name. Comma separated list if multiple owners)</owners>
<requireLicenseAcceptance>(true if you require user to accept license)</requireLicenseAcceptance>
<license type="expression">(SPDX license identifier)</license>
<projectUrl>(Project website)</projectUrl>
<repository url="(Public URL to the code repository. Remove this line if none exists)" />
<iconUrl>(Icon URL for this package. Must be publicly accessible)</iconUrl>
<description>(Description for this NuGet package)</description>
<summary>(A short version of the description)</summary>
<releaseNotes>(Enter release notes here)</releaseNotes>
<copyright>(Copyright (c) Year Author name)</copyright>
<tags>(Space delimited tags)</tags>
<dependencies>
<group targetFramework="(.NETStandard2.0 if this is a .NET standard library)">
<dependency id="(Unique identifier of the package this is dependent on)" version="(Version of that package)" />
</group>
</dependencies>
</metadata>
</package>

0 comments on commit ecf756e

Please sign in to comment.