rustbridge-cli 0.9.0

Build tool and code generator for rustbridge
<Project Sdk="Microsoft.NET.Sdk">

  <PropertyGroup>
    <OutputType>Exe</OutputType>
    <TargetFramework>net8.0</TargetFramework>
    <ImplicitUsings>enable</ImplicitUsings>
    <Nullable>enable</Nullable>
    <RootNamespace>{{class-name}}</RootNamespace>
  </PropertyGroup>

  <!--
    Prerequisites:
    This template expects rustbridge to be cloned at ~/rustbridge-workspace/rustbridge/
    as described in docs/GETTING_STARTED.md. If you cloned rustbridge elsewhere,
    update the paths below to match your setup.

    When RustBridge packages are published to NuGet, you can replace the
    ProjectReference items with PackageReference items instead.
  -->
  <ItemGroup>
    <ProjectReference Include="$(HOME)/rustbridge-workspace/rustbridge/rustbridge-csharp/RustBridge.Core/RustBridge.Core.csproj" />
    <ProjectReference Include="$(HOME)/rustbridge-workspace/rustbridge/rustbridge-csharp/RustBridge.Native/RustBridge.Native.csproj" />
  </ItemGroup>

  <!-- Or use NuGet packages when published:
  <ItemGroup>
    <PackageReference Include="RustBridge.Core" Version="0.7.0" />
    <PackageReference Include="RustBridge.Native" Version="0.7.0" />
  </ItemGroup>
  -->

</Project>