diff options
| -rw-r--r-- | Properties/launchSettings.json | 21 | ||||
| -rw-r--r-- | Server.csproj | 10 |
2 files changed, 8 insertions, 23 deletions
diff --git a/Properties/launchSettings.json b/Properties/launchSettings.json index 9f4966c..cbc7191 100644 --- a/Properties/launchSettings.json +++ b/Properties/launchSettings.json @@ -1,31 +1,14 @@ { "profiles": { - "WSL": { - "commandName": "WSL2", - "launchBrowser": true, - "launchUrl": "https://localhost:7132", - "environmentVariables": { - "ASPNETCORE_ENVIRONMENT": "Development", - "ASPNETCORE_URLS": "https://localhost:7132;http://localhost:5186" - }, - "distributionName": "" - }, "HyperBooru": { "commandName": "Project", "launchBrowser": true, + "inspectUri": "{wsProtocol}://{url.hostname}:{url.port}/_framework/debug/ws-proxy?browser={browserInspectUri}", "environmentVariables": { "ASPNETCORE_ENVIRONMENT": "Development" }, "dotnetRunMessages": true, "applicationUrl": "https://localhost:7132;http://localhost:5186" } - }, - "iisSettings": { - "windowsAuthentication": false, - "anonymousAuthentication": true, - "iisExpress": { - "applicationUrl": "http://localhost:1922", - "sslPort": 44354 - } } -}
\ No newline at end of file +} diff --git a/Server.csproj b/Server.csproj index e1d8051..51155a9 100644 --- a/Server.csproj +++ b/Server.csproj @@ -1,11 +1,12 @@ -<Project Sdk="Microsoft.NET.Sdk.Web"> +<Project Sdk="Microsoft.NET.Sdk.Web"> <PropertyGroup> <TargetFramework>net10.0</TargetFramework> <Nullable>enable</Nullable> <ImplicitUsings>enable</ImplicitUsings> - <AssemblyName>HyperBooru</AssemblyName> - <RootNamespace>HyperBooru</RootNamespace> + <AssemblyName>HyperBooru.Server</AssemblyName> + <RootNamespace>HyperBooru.Server</RootNamespace> + <BlazorDisableThrowNavigationException>true</BlazorDisableThrowNavigationException> <AssemblyVersion>0.17.0.0</AssemblyVersion> <FileVersion>$(AssemblyVersion)</FileVersion> <Version>0.17-alpha</Version> @@ -37,6 +38,7 @@ </ItemGroup> <ItemGroup> + <PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly.Server" Version="10.0.8" /> <PackageReference Include="Magick.NET-Q16-AnyCPU" Version="14.14.0" /> <PackageReference Include="Microsoft.EntityFrameworkCore" Version="10.0.8" /> <PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="10.0.8"> @@ -51,7 +53,7 @@ </ItemGroup> <ItemGroup> - <ProjectReference Include="..\ApiModels\ApiModels.csproj" /> + <ProjectReference Include="..\Client\Client.csproj" /> </ItemGroup> </Project> |
