|
6 | 6 | <PublishSingleFile>true</PublishSingleFile> |
7 | 7 | </PropertyGroup> |
8 | 8 |
|
9 | | - <PropertyGroup Condition="'$(Configuration)'=='Release'"> |
10 | | - <OptimizationPreference>Size</OptimizationPreference> |
11 | | - <InvariantGlobalization>true</InvariantGlobalization> |
12 | | - <StackTraceSupport>false</StackTraceSupport> |
13 | | - <UseSystemResourceKeys>true</UseSystemResourceKeys> |
14 | | - </PropertyGroup> |
15 | | - |
16 | 9 | <ItemGroup> |
17 | 10 | <ProjectReference Include="..\Infrastructure\HydraScript.Infrastructure.LexerRegexGenerator\HydraScript.Infrastructure.LexerRegexGenerator.csproj" |
18 | 11 | OutputItemType="Analyzer" |
|
25 | 18 | <PackageReference Include="System.CommandLine" /> |
26 | 19 | </ItemGroup> |
27 | 20 |
|
| 21 | + <PropertyGroup Condition="'$(PublishAot)' == 'false' And '$(PublishSingleFile)' == 'false'"> |
| 22 | + <IsPackable>true</IsPackable> |
| 23 | + <GeneratePackageOnBuild>true</GeneratePackageOnBuild> |
| 24 | + <PackageId>HydraScript</PackageId> |
| 25 | + <Description>TypeScript & 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' And '$(PublishSingleFile)' == '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 | + |
28 | 48 | </Project> |
0 commit comments