diff options
| author | Jake Mannens <jake@asger.xyz> | 2023-08-15 15:49:14 +1000 |
|---|---|---|
| committer | Jake Mannens <jake@asger.xyz> | 2025-08-18 10:59:32 +1000 |
| commit | 38c60cee378b9c2ad42fc9dc79bc492b919a68f5 (patch) | |
| tree | 6b62f84aab4b7866432e5da8ae8fcb889795d58b /Server.csproj | |
| parent | 07a4c7ead01514bd3f304f00abc38140a1d73634 (diff) | |
Convert Razor pages to Blazor
Diffstat (limited to 'Server.csproj')
| -rw-r--r-- | Server.csproj | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/Server.csproj b/Server.csproj index f7bf989..5eb5f1d 100644 --- a/Server.csproj +++ b/Server.csproj @@ -6,6 +6,17 @@ <ImplicitUsings>enable</ImplicitUsings> <AssemblyName>HyperBooru</AssemblyName> <RootNamespace>HyperBooru</RootNamespace> + <AssemblyVersion>0.1.0.0</AssemblyVersion> + <FileVersion>$(AssemblyVersion)</FileVersion> + <Version>$(AssemblyVersion)</Version> + </PropertyGroup> + + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'"> + <NoWarn>1701;1702;8618</NoWarn> + </PropertyGroup> + + <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'"> + <NoWarn>1701;1702;8618</NoWarn> </PropertyGroup> <ItemGroup> @@ -20,4 +31,9 @@ <PackageReference Include="Mime-Detective" Version="23.6.1" /> <PackageReference Include="Swashbuckle.AspNetCore" Version="6.5.0" /> </ItemGroup> + + <ItemGroup> + <Folder Include="Data\" /> + </ItemGroup> + </Project> |
