Skip to content

Commit

Permalink
Upgrade packages to latest, remove CentCom.Bot (#57)
Browse files Browse the repository at this point in the history
  • Loading branch information
bobbah committed Jul 8, 2023
1 parent 7060821 commit 666683d
Show file tree
Hide file tree
Showing 31 changed files with 82 additions and 988 deletions.
6 changes: 1 addition & 5 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,16 +21,12 @@ jobs:
7z a publish/CentCom.API-linux-x64.7z -r ./publish/linux-x64/CentCom.API/*
dotnet publish CentCom.Server -o publish/linux-x64/CentCom.Server -r "linux-x64" --self-contained false -c Release --nologo
7z a publish/CentCom.Server-linux-x64.7z -r ./publish/linux-x64/CentCom.Server/*
dotnet publish CentCom.Bot -o publish/linux-x64/CentCom.Bot -r "linux-x64" --self-contained false -c Release --nologo
7z a publish/CentCom.Bot-linux-x64.7z -r ./publish/linux-x64/CentCom.Bot/*
dotnet publish CentCom.Exporter -o publish/linux-x64/CentCom.Exporter -r "linux-x64" --self-contained false -c Release --nologo
7z a publish/CentCom.Exporter-linux-x64.7z -r ./publish/linux-x64/CentCom.Exporter/*
dotnet publish CentCom.API -o publish/win-x64/CentCom.API/ -r "win-x64" --self-contained false -c Release --nologo
7z a publish/CentCom.API-win-x64.7z -r ./publish/win-x64/CentCom.API/*
dotnet publish CentCom.Server -o publish/win-x64/CentCom.Server -r "win-x64" --self-contained false -c Release --nologo
7z a publish/CentCom.Server-win-x64.7z -r ./publish/win-x64/CentCom.Server/*
dotnet publish CentCom.Bot -o publish/win-x64/CentCom.Bot -r "win-x64" --self-contained false -c Release --nologo
7z a publish/CentCom.Bot-win-x64.7z -r ./publish/win-x64/CentCom.Bot/*
dotnet publish CentCom.Exporter -o publish/win-x64/CentCom.Exporter -r "win-x64" --self-contained false -c Release --nologo
7z a publish/CentCom.Exporter-win-x64.7z -r ./publish/win-x64/CentCom.Exporter/*
- name: Upload release artifacts
Expand All @@ -47,7 +43,7 @@ jobs:
tag
});
const releaseRuntimes = ['linux-x64', 'win-x64'];
const projects = ['CentCom.API', 'CentCom.Server', 'CentCom.Exporter', 'CentCom.Bot'];
const projects = ['CentCom.API', 'CentCom.Server', 'CentCom.Exporter'];
for (rt of releaseRuntimes) {
for (proj of projects) {
// Upload the release asset
Expand Down
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -348,3 +348,6 @@ MigrationBackup/

# Ionide (cross platform F# VS Code tools) working folder
.ionide/

# Rider files
.idea/**/*
8 changes: 0 additions & 8 deletions .idea/.idea.CentCom/.idea/indexLayout.xml

This file was deleted.

6 changes: 0 additions & 6 deletions .idea/.idea.CentCom/.idea/misc.xml

This file was deleted.

6 changes: 0 additions & 6 deletions .idea/.idea.CentCom/.idea/projectSettingsUpdater.xml

This file was deleted.

6 changes: 0 additions & 6 deletions .idea/.idea.CentCom/.idea/vcs.xml

This file was deleted.

393 changes: 0 additions & 393 deletions .idea/.idea.CentCom/.idea/workspace.xml

This file was deleted.

18 changes: 9 additions & 9 deletions CentCom.API/CentCom.API.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -7,19 +7,19 @@

<ItemGroup>
<PackageReference Include="BuildBundlerMinifier" Version="3.2.449" />
<PackageReference Include="Enums.NET" Version="4.0.0" />
<PackageReference Include="Microsoft.AspNetCore.Mvc.NewtonsoftJson" Version="6.0.6" />
<PackageReference Include="Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation" Version="6.0.6" />
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="6.0.6" />
<PackageReference Include="Enums.NET" Version="4.0.1" />
<PackageReference Include="Microsoft.AspNetCore.Mvc.NewtonsoftJson" Version="7.0.8" />
<PackageReference Include="Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation" Version="7.0.8" />
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="7.0.8" />
<PackageReference Include="MinVer" Version="4.3.0">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="Npgsql" Version="6.0.5" />
<PackageReference Include="Npgsql.EntityFrameworkCore.PostgreSQL" Version="6.0.5" />
<PackageReference Include="Swashbuckle.AspNetCore.Swagger" Version="6.3.1" />
<PackageReference Include="Swashbuckle.AspNetCore.SwaggerGen" Version="6.3.1" />
<PackageReference Include="Swashbuckle.AspNetCore.SwaggerUi" Version="6.3.1" />
<PackageReference Include="Npgsql" Version="7.0.4" />
<PackageReference Include="Npgsql.EntityFrameworkCore.PostgreSQL" Version="7.0.4" />
<PackageReference Include="Swashbuckle.AspNetCore.Swagger" Version="6.5.0" />
<PackageReference Include="Swashbuckle.AspNetCore.SwaggerGen" Version="6.5.0" />
<PackageReference Include="Swashbuckle.AspNetCore.SwaggerUi" Version="6.5.0" />
</ItemGroup>

<ItemGroup>
Expand Down
42 changes: 0 additions & 42 deletions CentCom.Bot/CentCom.Bot.csproj

This file was deleted.

70 changes: 0 additions & 70 deletions CentCom.Bot/Commands/AboutCommands.cs

This file was deleted.

65 changes: 0 additions & 65 deletions CentCom.Bot/Commands/SearchCommands.cs

This file was deleted.

10 changes: 0 additions & 10 deletions CentCom.Bot/Configuration/DiscordConfiguration.cs

This file was deleted.

103 changes: 0 additions & 103 deletions CentCom.Bot/Jobs/FailedParseJob.cs

This file was deleted.

Loading

0 comments on commit 666683d

Please sign in to comment.