42 lines
2.5 KiB
XML
42 lines
2.5 KiB
XML
<Project Sdk="Microsoft.NET.Sdk.Web">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net10.0</TargetFramework>
|
|
<Nullable>enable</Nullable>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<UserSecretsId>aspnet-RobotNet10_FleetManager-c155333e-f9e9-4e5d-b044-b289ee9762af</UserSecretsId>
|
|
<BlazorDisableThrowNavigationException>true</BlazorDisableThrowNavigationException>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.Tools" Version="10.0.3">
|
|
<PrivateAssets>all</PrivateAssets>
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
</PackageReference>
|
|
<PackageReference Include="SixLabors.ImageSharp" Version="3.1.12" />
|
|
<ProjectReference Include="..\..\Commons\RobotNet10.Common\RobotNet10.Common.csproj" />
|
|
<ProjectReference Include="..\..\Commons\RobotNet10.CustomConfiguration\RobotNet10.CustomConfiguration.csproj" />
|
|
<ProjectReference Include="..\..\Commons\RobotNet10.GlobalPathPlanner\RobotNet10.GlobalPathPlanner.csproj" />
|
|
<ProjectReference Include="..\..\Commons\RobotNet10.MapManager\RobotNet10.MapManager.csproj" />
|
|
<ProjectReference Include="..\..\Commons\RobotNet10.MqttConnection\RobotNet10.MqttConnection.csproj" />
|
|
<ProjectReference Include="..\..\Commons\RobotNet10.ScriptEngine\RobotNet10.ScriptEngine.csproj" />
|
|
<ProjectReference Include="..\..\Components\RobotNet10.Components\RobotNet10.Components.csproj" />
|
|
<ProjectReference Include="..\..\Shared\RobotNet.VDA5050\RobotNet.VDA5050.csproj" />
|
|
<ProjectReference Include="..\..\Shared\RobotNet10.Shared\RobotNet10.Shared.csproj" />
|
|
<ProjectReference Include="..\RobotNet10.FleetManager.Client\RobotNet10.FleetManager.Client.csproj" />
|
|
<ProjectReference Include="..\RobotNet10.FleetManager.Shared\RobotNet10.FleetManager.Shared.csproj" />
|
|
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly.Server" Version="10.0.3" />
|
|
<PackageReference Include="Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore" Version="10.0.3" />
|
|
<PackageReference Include="Microsoft.AspNetCore.Identity.EntityFrameworkCore" Version="10.0.3" />
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="10.0.3" />
|
|
<PackageReference Include="MQTTnet" Version="5.1.0.1559" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<Folder Include="Data\Migrations\Appdb\" />
|
|
<Folder Include="Data\Migrations\MapDb\" />
|
|
<Folder Include="Data\Migrations\ScriptDb\" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|