-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathHydraScript.csproj
More file actions
40 lines (35 loc) · 1.71 KB
/
Copy pathHydraScript.csproj
File metadata and controls
40 lines (35 loc) · 1.71 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<PublishAot>true</PublishAot>
<RuntimeIdentifiers>linux-x64;win-x64;osx-arm64;</RuntimeIdentifiers>
<IsPackable>true</IsPackable>
<PackageId>HydraScript</PackageId>
<Description>TypeScript & Go inspired small interpreted programming language written in C#</Description>
<Authors>Stepami</Authors>
<Company>N/A</Company>
<Copyright>Copyright © Stepami 2025</Copyright>
<RepositoryUrl>https://github.com/Stepami/hydrascript</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageProjectUrl>https://github.com/Stepami/hydrascript</PackageProjectUrl>
<Title>HydraScript</Title>
<PackageLicenseFile>LICENSE</PackageLicenseFile>
<PackageTags>interpreter script scripting cgi json backend bash perl typescript go csharp</PackageTags>
<PackAsTool>true</PackAsTool>
<ToolCommandName>hydrascript</ToolCommandName>
<PackageLicenseFile>LICENSE</PackageLicenseFile>
<PackageReadmeFile>README.md</PackageReadmeFile>
<PackageIcon>icon.png</PackageIcon>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\Infrastructure\HydraScript.Infrastructure\HydraScript.Infrastructure.csproj" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="System.CommandLine" />
</ItemGroup>
<ItemGroup>
<None Include="../../LICENSE" Pack="true" Visible="false" PackagePath=""/>
<None Include="../../README.md" Pack="true" Visible="false" PackagePath=""/>
<None Include="../../icon.png" Pack="true" Visible="false" PackagePath=""/>
</ItemGroup>
</Project>