-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathHako.Backend.WACS.csproj
More file actions
51 lines (44 loc) · 2.1 KB
/
Hako.Backend.WACS.csproj
File metadata and controls
51 lines (44 loc) · 2.1 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
41
42
43
44
45
46
47
48
49
50
51
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>net9.0;net10.0</TargetFrameworks>
<ImplicitUsings>disable</ImplicitUsings>
<Nullable>enable</Nullable>
<RootNamespace>HakoJS.Backend.WACS</RootNamespace>
<IsAotCompatible>true</IsAotCompatible>
<EmbedUntrackedSources>false</EmbedUntrackedSources>
</PropertyGroup>
<PropertyGroup>
<AssemblyName>Hako.Backend.WACS</AssemblyName>
<PackageId>Hako.Backend.WACS</PackageId>
<Authors>Andrew Sampson</Authors>
<Version>$(HakoPackageVersion)</Version>
<Owners>6over3 Institute</Owners>
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
<RepositoryUrl>https://github.com/6over3/hako</RepositoryUrl>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<EmbedUntrackedSources>true</EmbedUntrackedSources>
<Summary>A Hako backend using WACS</Summary>
<PackageTags>webassembly, .net, wasm, javascript, typescript</PackageTags>
<Title>Hako (WACS)</Title>
<PackageDescription>
A Hako backend which uses https://github.com/kelnishi/WACS, a WebAssembly runtime implemented in .NET
Using this backend allows a .NET application using Hako to compile to any target where .NET is supported
</PackageDescription>
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
<PackageReadmeFile>README.md</PackageReadmeFile>
<EnablePackageValidation>true</EnablePackageValidation>
<ContinuousIntegrationBuild Condition="'$(DevBuild)'=='false'">true</ContinuousIntegrationBuild>
<NoWarn>$(NoWarn);1591</NoWarn>
</PropertyGroup>
<ItemGroup>
<None Include="README.md" Pack="true" PackagePath="\" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Hako.Backend\Hako.Backend.csproj"/>
</ItemGroup>
<ItemGroup>
<PackageReference Include="WACS" Version="0.7.5" />
<PackageReference Include="WACS.WASIp1" Version="0.9.7" />
</ItemGroup>
</Project>