summaryrefslogtreecommitdiff
path: root/OldServer.csproj
diff options
context:
space:
mode:
authorJake Mannens <jake@asger.xyz>2026-05-22 12:46:00 +1000
committerJake Mannens <jake@asger.xyz>2026-05-23 22:13:00 +1000
commit4ea3ddb38d010c2f85c22b7f1c3f2d7e0c1355e3 (patch)
tree90af9203059d645eb77216f1a091722ee9702438 /OldServer.csproj
parent6de5d7f5364fe1d54703da6d6b7cb08ea26e939f (diff)
Initial commitwasm-oldserver
Diffstat (limited to 'OldServer.csproj')
-rw-r--r--OldServer.csproj39
1 files changed, 39 insertions, 0 deletions
diff --git a/OldServer.csproj b/OldServer.csproj
new file mode 100644
index 0000000..2ac3891
--- /dev/null
+++ b/OldServer.csproj
@@ -0,0 +1,39 @@
+<Project Sdk="Microsoft.NET.Sdk.Web">
+
+ <PropertyGroup>
+ <TargetFramework>net10.0</TargetFramework>
+ <Nullable>enable</Nullable>
+ <ImplicitUsings>enable</ImplicitUsings>
+ <AssemblyName>HyperBooru</AssemblyName>
+ <RootNamespace>HyperBooru</RootNamespace>
+ <AssemblyVersion>0.17.0.0</AssemblyVersion>
+ <FileVersion>$(AssemblyVersion)</FileVersion>
+ <Version>0.17-alpha</Version>
+ <UserSecretsId>2907567f-4640-4581-8f4d-0977952d26bd</UserSecretsId>
+ </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>
+
+ <PropertyGroup>
+ <DefaultItemExcludes>$(DefaultItemExcludes);Data/**</DefaultItemExcludes>
+ </PropertyGroup>
+
+ <PropertyGroup Condition="'$(Configuration)' == 'Release'">
+ <DebugType>None</DebugType>
+ <DebugSymbols>false</DebugSymbols>
+ </PropertyGroup>
+
+ <ItemGroup>
+ <Compile Remove="Data/**" />
+ <Content Remove="Data/**" />
+ <EmbeddedResource Remove="Data/**" />
+ <None Remove="Data/**" />
+ </ItemGroup>
+
+</Project>