summaryrefslogtreecommitdiff
path: root/OldServer.csproj
diff options
context:
space:
mode:
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>