generated from nventive/Template
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Feat: Support for Dotnet Cli template (#6)
* feat: add template and nuget conf * chore: renaming , split readme * docs: Update readme and comment * style: renaming * docs: update readme
- Loading branch information
1 parent
766a1e6
commit b8ea03c
Showing
7 changed files
with
256 additions
and
144 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,19 @@ | ||
#name: Publish | ||
#on: | ||
# push: | ||
# tags: | ||
# - v* | ||
# | ||
#jobs: | ||
# build: | ||
# runs-on: ubuntu-latest | ||
# | ||
# steps: | ||
# - name: Checkout code | ||
# uses: actions/checkout@v3 | ||
# | ||
# - name: Build NuGet Package | ||
# run: nuget pack . -Version ${GITHUB_REF#refs/tags/v} -OutputDirectory ./artifacts | ||
# | ||
# - name: Publish NuGet package | ||
# run: nuget push ./artifacts/nventive.Templates.Aspire.*.nupkg ${{ secrets.NUGET_API_KEY }} -Source https://api.nuget.org/v3/index.json |
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
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,23 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
|
||
<PropertyGroup> | ||
<PackageType>Template</PackageType> | ||
<PackageVersion>1.0</PackageVersion> | ||
<PackageId>nventive.Templates.Aspire</PackageId> | ||
<Title>Aspire Template c#</Title> | ||
<Authors>LaffondDamien</Authors> | ||
<Description>Template to use when creating project with dotnet cli.</Description> | ||
<PackageTags>dotnet-new;templates;nventive</PackageTags> | ||
<TargetFramework>net9.0</TargetFramework> | ||
|
||
<IncludeContentInPack>true</IncludeContentInPack> | ||
<IncludeBuildOutput>false</IncludeBuildOutput> | ||
<ContentTargetFolders>content</ContentTargetFolders> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<Content Include="template\**\*" Exclude="template\**\bin\**;template\**\obj\**" /> | ||
<Compile Remove="**\*" /> | ||
</ItemGroup> | ||
|
||
</Project> |
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
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,18 @@ | ||
{ | ||
"$schema": "http://json.schemastore.org/template", | ||
"author": "LaffondDamien", | ||
"classifications": ["Aspire"], | ||
"identity": "nventive.Templates.Aspire", | ||
"name": "Aspire Template", | ||
"shortName": "nv-aspire", | ||
"sourceName": "Placeholder", | ||
"defaultName": "MyAspireProject", | ||
"tags": { | ||
"language": "C#", | ||
"type": "solution" | ||
}, | ||
|
||
"symbols": {}, | ||
|
||
"postActions": [] | ||
} |
Oops, something went wrong.