aboutsummaryrefslogtreecommitdiff
path: root/PagerParser.csproj
diff options
context:
space:
mode:
Diffstat (limited to 'PagerParser.csproj')
-rw-r--r--PagerParser.csproj33
1 files changed, 23 insertions, 10 deletions
diff --git a/PagerParser.csproj b/PagerParser.csproj
index 8a16fe6..7a72caa 100644
--- a/PagerParser.csproj
+++ b/PagerParser.csproj
@@ -1,24 +1,37 @@
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
- <TargetFramework>net7.0</TargetFramework>
+ <TargetFramework>net8.0</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
- <Version>0.3</Version>
+ <Version>0.4-rc1</Version>
+ <UserSecretsId>77f0c394-8b38-418c-a13e-2dc7c57ff7b9</UserSecretsId>
</PropertyGroup>
<ItemGroup>
- <PackageReference Include="CoordinateSharp" Version="2.18.1.1" />
- <PackageReference Include="Npgsql.EntityFrameworkCore.PostgreSQL" Version="7.0.4" />
+ <PackageReference Include="CoordinateSharp" Version="2.24.2.1" />
+ <PackageReference Include="Discord.Net" Version="3.16.0" />
+ <PackageReference Include="Npgsql.EntityFrameworkCore.PostgreSQL" Version="8.0.4" />
<PackageReference Include="SocketIOClient" Version="3.0.8" />
- <PackageReference Include="Swashbuckle.AspNetCore" Version="6.5.0" />
- <PackageReference Include="Microsoft.EntityFrameworkCore" Version="7.0.8" />
- <PackageReference Include="Microsoft.EntityFrameworkCore.Proxies" Version="7.0.8" />
- <PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="7.0.8">
+ <PackageReference Include="Swashbuckle.AspNetCore" Version="6.7.3" />
+ <PackageReference Include="Microsoft.EntityFrameworkCore" Version="8.0.8" />
+ <PackageReference Include="Microsoft.EntityFrameworkCore.Proxies" Version="8.0.8" />
+ <PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="8.0.8">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
- <PackageReference Include="System.Configuration.ConfigurationManager" Version="7.0.0" />
+ <PackageReference Include="System.Configuration.ConfigurationManager" Version="8.0.0" />
</ItemGroup>
-</Project> \ No newline at end of file
+ <ItemGroup>
+ <Content Update="appsettings.Development.json">
+ <CopyToOutputDirectory>Never</CopyToOutputDirectory>
+ </Content>
+ </ItemGroup>
+
+ <PropertyGroup Condition="$(Configuration) == 'Release'">
+ <DebugType>none</DebugType>
+ <DebugSymbols>false</DebugSymbols>
+ </PropertyGroup>
+
+</Project>