Skip to content

Commit 14726f9

Browse files
committed
#216 - add tool setup
1 parent cff2983 commit 14726f9

File tree

1 file changed

+27
-0
lines changed

1 file changed

+27
-0
lines changed

src/HydraScript/HydraScript.csproj

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,4 +18,31 @@
1818
<PackageReference Include="System.CommandLine" />
1919
</ItemGroup>
2020

21+
<PropertyGroup Condition="'$(PublishAot)' == 'false'">
22+
<IsPackable>true</IsPackable>
23+
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
24+
<PackageId>HydraScript</PackageId>
25+
<Description>TypeScript &amp; Go inspired small interpreted programming language written in C#</Description>
26+
<Authors>Stepami</Authors>
27+
<Company>N/A</Company>
28+
<Copyright>Copyright © Stepami 2025</Copyright>
29+
<RepositoryUrl>https://github.com/Stepami/hydrascript</RepositoryUrl>
30+
<RepositoryType>git</RepositoryType>
31+
<PackageProjectUrl>https://github.com/Stepami/hydrascript</PackageProjectUrl>
32+
<Title>HydraScript</Title>
33+
<PackageLicenseFile>LICENSE</PackageLicenseFile>
34+
<PackageTags>interpreter script scripting cgi json backend bash perl typescript go csharp</PackageTags>
35+
<PackAsTool>true</PackAsTool>
36+
<ToolCommandName>hydrascript</ToolCommandName>
37+
<PackageLicenseFile>LICENSE</PackageLicenseFile>
38+
<PackageReadmeFile>README.md</PackageReadmeFile>
39+
<PackageIcon>icon.png</PackageIcon>
40+
</PropertyGroup>
41+
42+
<ItemGroup Condition="'$(PublishAot)' == 'false'">
43+
<None Include="../../LICENSE" Pack="true" Visible="false" PackagePath=""/>
44+
<None Include="../../README.md" Pack="true" Visible="false" PackagePath=""/>
45+
<None Include="../../icon.png" Pack="true" Visible="false" PackagePath=""/>
46+
</ItemGroup>
47+
2148
</Project>

0 commit comments

Comments
 (0)