-
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.
- Loading branch information
1 parent
01e1b0c
commit ebbb679
Showing
3 changed files
with
62 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,55 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
|
||
<PropertyGroup> | ||
<PackageId>DevToys.Utility.Templates</PackageId> | ||
<PackageVersion>1.0</PackageVersion> | ||
<Title>DevToys.io TAB/TAMB Templates</Title> | ||
<Authors>DevToys.io / Jude Lee</Authors> | ||
<Description>TAB and TAMB stack templates</Description> | ||
<PackageTags>devtoys-tab;devtoys-tamb;devtoys</PackageTags> | ||
<PackageProjectUrl>https://github.com/judescripts/tab_tamb</PackageProjectUrl> | ||
|
||
<!-- Keep package type as 'Template' to show the package as a template package on nuget.org and | ||
make your template available in dotnet new search.--> | ||
<PackageType>Template</PackageType> | ||
<TargetFramework>net8.0</TargetFramework> | ||
<IncludeContentInPack>true</IncludeContentInPack> | ||
<IncludeBuildOutput>false</IncludeBuildOutput> | ||
<ContentTargetFolders>content</ContentTargetFolders> | ||
<NoWarn>$(NoWarn);NU5128</NoWarn> | ||
<NoDefaultExcludes>true</NoDefaultExcludes> | ||
<PackageReadmeFile>README.md</PackageReadmeFile> | ||
</PropertyGroup> | ||
|
||
<PropertyGroup> | ||
<LocalizeTemplates>false</LocalizeTemplates> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<PackageReference Include="Microsoft.TemplateEngine.Tasks" Version="*" PrivateAssets="all" | ||
IsImplicitlyDefined="true" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<Content Include="content\**\*" Exclude="content\**\bin\**;content\**\obj\**" /> | ||
<Compile Remove="**\*" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<None Include="README.md" Pack="true" PackagePath="" /> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<None Include="LICENSE" Pack="true" PackagePath=""></None> | ||
</ItemGroup> | ||
|
||
<PropertyGroup> | ||
<PackageLicenseFile>LICENSE</PackageLicenseFile> | ||
</PropertyGroup> | ||
|
||
|
||
<PropertyGroup> | ||
<PackageLicenseExpresion>MIT</PackageLicenseExpresion> | ||
</PropertyGroup> | ||
|
||
</Project> |
File renamed without changes.
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,7 @@ | ||
**DevToys.io DotNet TAB/TAMB Stack Templates** | ||
|
||
```mkdir <your project name>``` | ||
```cd <your project name>``` | ||
```dotnet new [tab] or [tamb]``` | ||
```npm install ``` | ||
```dotnet watch run``` |