Fixed mini mistakes

This commit is contained in:
Gilles Lazures 2026-01-30 05:16:04 +01:00
parent eb5d29af89
commit 70e86fa36b
2 changed files with 1 additions and 7 deletions

View File

@ -22,12 +22,6 @@
<ItemGroup> <ItemGroup>
<TrimmerRootDescriptor Include="Roots.xml" /> <TrimmerRootDescriptor Include="Roots.xml" />
</ItemGroup> </ItemGroup>
<ItemGroup>
<Compile Remove="wwwroot\**" />
<None Update="wwwroot\**">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
</ItemGroup>
<ItemGroup> <ItemGroup>
<PackageReference Include="BrikPackager" Version="0.0.1" GeneratePathProperty="true" /> <PackageReference Include="BrikPackager" Version="0.0.1" GeneratePathProperty="true" />
<PackageReference Include="Photino.NET" Version="4.0.16" /> <PackageReference Include="Photino.NET" Version="4.0.16" />

View File

@ -6,7 +6,7 @@ namespace Lentia.Core.Constants {
public static class Urls { public static class Urls {
public const string MojangManifest = "https://launchermeta.mojang.com/mc/game/version_manifest_v2.json"; public const string MojangManifest = "https://launchermeta.mojang.com/mc/game/version_manifest_v2.json";
public const string YggdrasilServer = "https://yggdrasil.azures.fr/"; public const string YggdrasilServer = "https://yggdrasil.azures.fr/";
public const string MojangAuthServer = YggdrasilServer + "/authserver"; public const string MojangAuthServer = YggdrasilServer + "authserver";
public const string ApiUrl = "https://lentia-api.azures.fr"; public const string ApiUrl = "https://lentia-api.azures.fr";
} }