1
0

Ça a l'air que DotNet Aspire c'est ben sweet.

This commit is contained in:
MarcEricMartel
2023-11-15 09:38:06 -05:00
parent f48a58c8a5
commit 699fcdcb66
53 changed files with 697 additions and 1270 deletions

View File

@@ -0,0 +1,19 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<IsAspireHost>true</IsAspireHost>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Aspire.Hosting" Version="8.0.0-preview.1.23557.2" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\BlazorCanvas.Server\BlazorCanvas.Server.csproj" />
</ItemGroup>
</Project>