Skip to content

Commit

Permalink
update package
Browse files Browse the repository at this point in the history
  • Loading branch information
LittleLittleCloud committed Dec 22, 2024
1 parent e68d483 commit 5d020e5
Showing 1 changed file with 34 additions and 3 deletions.
37 changes: 34 additions & 3 deletions template/StepWise.Template.csproj
Original file line number Diff line number Diff line change
@@ -1,6 +1,4 @@
<Project Sdk="Microsoft.NET.Sdk">

<Import Project="$(RepoRoot)/nuget/nuget-package.props" />
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<!-- 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.-->
Expand All @@ -16,8 +14,41 @@
<GenerateAssemblyInfo>False</GenerateAssemblyInfo>
<SuppressDependenciesWhenPacking>True</SuppressDependenciesWhenPacking>
<EnableNETAnalyzers>False</EnableNETAnalyzers>
<EnforceCodeStyleInBuild>False</EnforceCodeStyleInBuild>
<GeneratePackageOnBuild>False</GeneratePackageOnBuild>
<IsPackable>true</IsPackable>
<IsShipping>true</IsShipping>
<IsShippingPackage>true</IsShippingPackage>
</PropertyGroup>

<PropertyGroup>
<!-- Default description and tags. Packages can override. -->
<Authors>LittleLittleCloud</Authors>
<Product>StepWise</Product>
<Description>A powerful C# library for building and executing workflows</Description>
<PackageTags>AI, Artificial Intelligence, SDK, template</PackageTags>
<PackageId>LittleLittleCloud.StepWise.Template</PackageId>

<!-- Required license, copyright, and repo information. Packages can override. -->
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageProjectUrl>https://littlelittlecloud.github.io/StepWise/</PackageProjectUrl>
<PublishRepositoryUrl>true</PublishRepositoryUrl>

<!-- Use icon and NUGET readme from dotnet/nuget folder -->
<PackageIcon>icon.png</PackageIcon>
<PackageIconUrl>icon.png</PackageIconUrl>
<PackageReadmeFile>NUGET.md</PackageReadmeFile>

<!-- Optional: Publish the repository URL in the built .nupkg (in the NuSpec <Repository> element) -->
<PublishRepositoryUrl>true</PublishRepositoryUrl>
</PropertyGroup>

<ItemGroup>
<!-- Include icon.png and NUGET.md in the project. -->
<None Include="$(RepoRoot)/nuget/icon.png" Link="icon.png" Pack="true" PackagePath="." />
<None Include="$(RepoRoot)/nuget/NUGET.md" Link="NUGET.md" Pack="true" PackagePath="." />
</ItemGroup>

<PropertyGroup>
<LocalizeTemplates>false</LocalizeTemplates>
</PropertyGroup>
Expand Down

0 comments on commit 5d020e5

Please sign in to comment.