27 lines
824 B
XML
27 lines
824 B
XML
|
<Project Sdk="Microsoft.NET.Sdk">
|
|||
|
|
|||
|
<PropertyGroup>
|
|||
|
<OutputType>Library</OutputType>
|
|||
|
<TargetFramework>net9.0</TargetFramework>
|
|||
|
<!-- <RootNamespace>dotnet_guest_test</RootNamespace> -->
|
|||
|
<ImplicitUsings>enable</ImplicitUsings>
|
|||
|
<Nullable>enable</Nullable>
|
|||
|
|
|||
|
<RuntimeIdentifier>wasi-wasm</RuntimeIdentifier>
|
|||
|
<UseAppHost>false</UseAppHost>
|
|||
|
<PublishTrimmed>true</PublishTrimmed>
|
|||
|
<InvariantGlobalization>true</InvariantGlobalization>
|
|||
|
<SelfContained>true</SelfContained>
|
|||
|
<IlcExportUnmanagedEntrypoints>true</IlcExportUnmanagedEntrypoints>
|
|||
|
</PropertyGroup>
|
|||
|
|
|||
|
<ItemGroup>
|
|||
|
<PackageReference Include="BytecodeAlliance.Componentize.DotNet.Wasm.SDK" Version="0.4.0-preview00007" />
|
|||
|
</ItemGroup>
|
|||
|
|
|||
|
<ItemGroup>
|
|||
|
<Wit Update="add.wit" World="example" />
|
|||
|
</ItemGroup>
|
|||
|
|
|||
|
</Project>
|