-
Notifications
You must be signed in to change notification settings - Fork 101
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #205 from niravmsoni/template
Create .nuspec file and template.json
- Loading branch information
Showing
2 changed files
with
44 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
{ | ||
"$schema": "http://json.schemastore.org/template", | ||
"author": "Steve Smith @ardalis", | ||
"classifications": [ | ||
"Web","ASP.NET","Clean Architecture", "Worker Service" | ||
], | ||
"tags": { | ||
"language": "C#", | ||
"type":"project" | ||
}, | ||
"identity": "Ardalis.CleanArchitecture.WorkerService.Template", | ||
"name": "ASP.NET Core Clean Architecture Solution for Worker Service", | ||
"shortName": "clean-arch-worker-svc", | ||
"sourceName": "CleanArchitecture.WorkerService.sln", | ||
"preferNameDirectory": true | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd"> | ||
<metadata> | ||
<id>Ardalis.CleanArchitecture.WorkerService.Template</id> | ||
<title>ASP.NET Core Clean Architecture Solution for Worker Service</title> | ||
<version>9.1.2</version> | ||
<authors>Steve Smith</authors> | ||
<description> | ||
The Clean Architecture Solution Template for Worker service popularized by Steve @ardalis Smith. | ||
</description> | ||
<language>en-US</language> | ||
<license type="expression">MIT</license> | ||
<projectUrl>https://github.com/ardalis/CleanArchitecture.WorkerService</projectUrl> | ||
<releaseNotes> | ||
Fixes MimeKit disonnect issue. | ||
</releaseNotes> | ||
<packageTypes> | ||
<packageType name="Template" /> | ||
</packageTypes> | ||
<tags>Web ASP.NET "Clean Architecture" ddd domain-driven-design clean-architecture clean architecture ardalis SOLID</tags> | ||
<icon>./content/icon.png</icon> | ||
<readme>README.md</readme> | ||
</metadata> | ||
<files> | ||
<file src=".\**" target="content" exclude="**\bin\**;**\obj\**;**\.git\**;**\.github\**;**\*.user;**\.vs\**;**\.vscode\**;**\.gitignore;**\sample\**" /> | ||
<file src="README.md" /> | ||
</files> | ||
</package> |