diff options
| author | Jake Mannens <jake@asger.xyz> | 2024-09-20 16:21:09 +1000 |
|---|---|---|
| committer | Jake Mannens <jake@asger.xyz> | 2024-10-29 11:42:54 +1100 |
| commit | e8e3c4cba8ffa0056e984c113cfbb75319e00022 (patch) | |
| tree | 8336315e61f9e77207276d478b25fe5dc7c3d06c /PagerParser.csproj | |
| parent | 0e21907c76dbefed11f382bcf949143f0716567f (diff) | |
v0.4-rc1v0.4-rc1
Diffstat (limited to 'PagerParser.csproj')
| -rw-r--r-- | PagerParser.csproj | 33 |
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> |
