Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Clean up the project structure #435

Merged
merged 1 commit into from
Jul 5, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 2 additions & 3 deletions .template.config/template.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"$schema": "http://json.schemastore.org/template",
"author": "hualin.zhu",
"author": "hl.z",
"classifications": ["Web","Blazor","Clean Architecture"],
"name": "Clean Architecture for Blazor Server Solution",
"defaultName": "CleanArchitecture.Blazor",
Expand Down Expand Up @@ -34,10 +34,9 @@
"**/.github/**",
"*.nuspec",
"*.nupkg",
"src/Blazor.Server.UI/Files/**",
"launchSettings.json",
"*.exe",
"cleanarchitecture.blazor.solution.template/**/**"
"src/Blazor.Server.UI/Files/**"
]
}
]
Expand Down
10 changes: 5 additions & 5 deletions CleanArchitecture.Blazor.nuspec
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
<?xml version="1.0" encoding="utf-8"?>
<package xmlns="http://schemas.microsoft.com/packaging/2012/06/nuspec.xsd">
<metadata>

<id>CleanArchitecture.Blazor.Solution.Template</id>
<version>1.0.0-preview.2</version>
<version>1.0.0-preview.3</version>
<title>Clean Architecture Blazor Solution Template</title>
<authors>JasonTaylorDev</authors>
<authors>hl.z</authors>
<description>Clean Architecture Blazor Solution Template for .NET 7.</description>
<summary>
A Clean Architecture Blazor Server Solution Template for creating a Single-Page Application (SPA) with ASP.NET Core.
</summary>
<releaseNotes>
Added item template for creating use cases (commands and queries)
1.0.0-preview.3
- Clean up the project structure
</releaseNotes>

<projectUrl>https://github.com/neozhu/CleanArchitectureWithBlazorServer</projectUrl>
Expand All @@ -31,7 +31,7 @@
<files>
<file src=".template.config\icon.png" />
<file src="README.md" />
<file src=".\**" target="content" exclude="**\bin\**;**\obj\**;**\.vs\**;**\.vscode\**;**\wwwroot\dist\**;content\Directory.Build.*;**\.git\**;**\.github\**;**\CODE_OF_CONDUCT.md;**\LICENSE;**\README.md;" />
<file src=".\**" target="content" exclude=".template.config\**;*.exe\;*\bin\**;**\obj\**;**\.vs\**;**\.vscode\**;**\wwwroot\dist\**;content\Directory.Build.*;**\.git\**;**\.github\**;**\CODE_OF_CONDUCT.md;**\LICENSE;**\README.md;" />
</files>

</package>