Skip to content

Commit

Permalink
package release
Browse files Browse the repository at this point in the history
  • Loading branch information
judescripts committed Jan 19, 2024
1 parent 01e1b0c commit ebbb679
Show file tree
Hide file tree
Showing 3 changed files with 62 additions and 0 deletions.
55 changes: 55 additions & 0 deletions working/DevToys.Utility.Templates.csproj
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.
7 changes: 7 additions & 0 deletions working/README.md
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```

0 comments on commit ebbb679

Please sign in to comment.