Remove old project directories
This commit is contained in:
		
							parent
							
								
									41cf24c774
								
							
						
					
					
						commit
						5261713735
					
				@ -1,4 +0,0 @@
 | 
			
		||||
{
 | 
			
		||||
  "AttackerPrize" : 1.337,
 | 
			
		||||
  "AttackerPenalty" : 0.345
 | 
			
		||||
}
 | 
			
		||||
@ -1,62 +0,0 @@
 | 
			
		||||
[
 | 
			
		||||
  {
 | 
			
		||||
    "Name" : "Virus",
 | 
			
		||||
    "ItemType" : { "Case" : "Weapon" },
 | 
			
		||||
    "Cost" : 5.0
 | 
			
		||||
  },
 | 
			
		||||
  {
 | 
			
		||||
    "Name" : "Ransom",
 | 
			
		||||
    "ItemType" : { "Case" : "Weapon" },
 | 
			
		||||
    "Cost" : 10.0
 | 
			
		||||
  },
 | 
			
		||||
  {
 | 
			
		||||
    "Name" : "Worm",
 | 
			
		||||
    "ItemType" : { "Case" : "Weapon" },
 | 
			
		||||
    "Cost" : 5.0
 | 
			
		||||
  },
 | 
			
		||||
  {
 | 
			
		||||
    "Name" : "DDos",
 | 
			
		||||
    "ItemType" : { "Case" : "Weapon" },
 | 
			
		||||
    "Cost" : 10.0
 | 
			
		||||
  },
 | 
			
		||||
  {
 | 
			
		||||
    "Name" : "Crack",
 | 
			
		||||
    "ItemType" : { "Case" : "Weapon" },
 | 
			
		||||
    "Cost" : 5.0
 | 
			
		||||
  },
 | 
			
		||||
  {
 | 
			
		||||
    "Name" : "Injection",
 | 
			
		||||
    "ItemType" : { "Case" : "Weapon" },
 | 
			
		||||
    "Cost" : 10.0
 | 
			
		||||
  },
 | 
			
		||||
  {
 | 
			
		||||
    "Name" : "Firewall",
 | 
			
		||||
    "ItemType" : { "Case" : "Shield" },
 | 
			
		||||
    "Cost" : 5.0
 | 
			
		||||
  },
 | 
			
		||||
  {
 | 
			
		||||
    "Name" : "PortScan",
 | 
			
		||||
    "ItemType" : { "Case" : "Shield" },
 | 
			
		||||
    "Cost" : 10.0
 | 
			
		||||
  },
 | 
			
		||||
  {
 | 
			
		||||
    "Name" : "Encryption",
 | 
			
		||||
    "ItemType" : { "Case" : "Shield" },
 | 
			
		||||
    "Cost" : 5.0
 | 
			
		||||
  },
 | 
			
		||||
  {
 | 
			
		||||
    "Name" : "Hardening",
 | 
			
		||||
    "ItemType" : { "Case" : "Shield" },
 | 
			
		||||
    "Cost" : 10.0
 | 
			
		||||
  },
 | 
			
		||||
  {
 | 
			
		||||
    "Name" : "Cypher",
 | 
			
		||||
    "ItemType" : { "Case" : "Shield" },
 | 
			
		||||
    "Cost" : 5.0
 | 
			
		||||
  },
 | 
			
		||||
  {
 | 
			
		||||
    "Name" : "Sanitation",
 | 
			
		||||
    "ItemType" : { "Case" : "Shield" },
 | 
			
		||||
    "Cost" : 10.0
 | 
			
		||||
  }
 | 
			
		||||
]
 | 
			
		||||
@ -1,25 +0,0 @@
 | 
			
		||||
**/.dockerignore
 | 
			
		||||
**/.env
 | 
			
		||||
**/.git
 | 
			
		||||
**/.gitignore
 | 
			
		||||
**/.project
 | 
			
		||||
**/.settings
 | 
			
		||||
**/.toolstarget
 | 
			
		||||
**/.vs
 | 
			
		||||
**/.vscode
 | 
			
		||||
**/.idea
 | 
			
		||||
**/*.*proj.user
 | 
			
		||||
**/*.dbmdl
 | 
			
		||||
**/*.jfm
 | 
			
		||||
**/azds.yaml
 | 
			
		||||
**/bin
 | 
			
		||||
**/charts
 | 
			
		||||
**/docker-compose*
 | 
			
		||||
**/Dockerfile*
 | 
			
		||||
**/node_modules
 | 
			
		||||
**/npm-debug.log
 | 
			
		||||
**/obj
 | 
			
		||||
**/secrets.dev.yaml
 | 
			
		||||
**/values.dev.yaml
 | 
			
		||||
LICENSE
 | 
			
		||||
README.md
 | 
			
		||||
@ -1,18 +0,0 @@
 | 
			
		||||
FROM mcr.microsoft.com/dotnet/runtime:6.0 AS base
 | 
			
		||||
WORKDIR /app
 | 
			
		||||
 | 
			
		||||
FROM mcr.microsoft.com/dotnet/sdk:6.0 AS build
 | 
			
		||||
WORKDIR /src
 | 
			
		||||
COPY ["HackerBattle/HackerBattle.fsproj", "HackerBattle/"]
 | 
			
		||||
RUN dotnet restore "HackerBattle/HackerBattle.fsproj"
 | 
			
		||||
COPY . .
 | 
			
		||||
WORKDIR "/src/HackerBattle"
 | 
			
		||||
RUN dotnet build "HackerBattle.fsproj" -c Release -o /app/build
 | 
			
		||||
 | 
			
		||||
FROM build AS publish
 | 
			
		||||
RUN dotnet publish "HackerBattle.fsproj" -c Release -o /app/publish
 | 
			
		||||
 | 
			
		||||
FROM base AS final
 | 
			
		||||
WORKDIR /app
 | 
			
		||||
COPY --from=publish /app/publish .
 | 
			
		||||
ENTRYPOINT ["dotnet", "HackerBattle.dll"]
 | 
			
		||||
@ -1,24 +0,0 @@
 | 
			
		||||
<?xml version="1.0" encoding="utf-8"?>
 | 
			
		||||
<Project Sdk="Microsoft.NET.Sdk">
 | 
			
		||||
  <PropertyGroup>
 | 
			
		||||
    <OutputType>Exe</OutputType>
 | 
			
		||||
    <TargetFramework>net6.0</TargetFramework>
 | 
			
		||||
    <RootNamespace>hacker-game</RootNamespace>
 | 
			
		||||
    <DockerDefaultTargetOS>Linux</DockerDefaultTargetOS>
 | 
			
		||||
  </PropertyGroup>
 | 
			
		||||
  <ItemGroup>
 | 
			
		||||
    <Content Include=".dockerignore" />
 | 
			
		||||
    <Content Include="Dockerfile" />
 | 
			
		||||
  </ItemGroup>
 | 
			
		||||
  <ItemGroup>
 | 
			
		||||
    <ReferencePathWithRefAssemblies Update="\home\joe\.nuget\packages\dsharpplus.slashcommands\4.2.0-nightly-01054\lib\netstandard2.0\DSharpPlus.SlashCommands.dll" />
 | 
			
		||||
  </ItemGroup>
 | 
			
		||||
  <ItemGroup>
 | 
			
		||||
    <Content Include="paket.references" />
 | 
			
		||||
  </ItemGroup>
 | 
			
		||||
  <ItemGroup>
 | 
			
		||||
    <ProjectReference Include="..\DbService\DbService.fsproj" />
 | 
			
		||||
    <ProjectReference Include="..\Shared\Shared.fsproj" />
 | 
			
		||||
  </ItemGroup>
 | 
			
		||||
  <Import Project="..\.paket\Paket.Restore.targets" />
 | 
			
		||||
</Project>
 | 
			
		||||
@ -1,7 +0,0 @@
 | 
			
		||||
FSharp.Core
 | 
			
		||||
DSharpPlus
 | 
			
		||||
// DSharpPlus.CommandsNext
 | 
			
		||||
// DSharpPlus.Interactivity
 | 
			
		||||
DSharpPlus.SlashCommands
 | 
			
		||||
 | 
			
		||||
// MongoDB.Driver
 | 
			
		||||
@ -1,25 +0,0 @@
 | 
			
		||||
**/.dockerignore
 | 
			
		||||
**/.env
 | 
			
		||||
**/.git
 | 
			
		||||
**/.gitignore
 | 
			
		||||
**/.project
 | 
			
		||||
**/.settings
 | 
			
		||||
**/.toolstarget
 | 
			
		||||
**/.vs
 | 
			
		||||
**/.vscode
 | 
			
		||||
**/.idea
 | 
			
		||||
**/*.*proj.user
 | 
			
		||||
**/*.dbmdl
 | 
			
		||||
**/*.jfm
 | 
			
		||||
**/azds.yaml
 | 
			
		||||
**/bin
 | 
			
		||||
**/charts
 | 
			
		||||
**/docker-compose*
 | 
			
		||||
**/Dockerfile*
 | 
			
		||||
**/node_modules
 | 
			
		||||
**/npm-debug.log
 | 
			
		||||
**/obj
 | 
			
		||||
**/secrets.dev.yaml
 | 
			
		||||
**/values.dev.yaml
 | 
			
		||||
LICENSE
 | 
			
		||||
README.md
 | 
			
		||||
@ -1,18 +0,0 @@
 | 
			
		||||
FROM mcr.microsoft.com/dotnet/runtime:6.0 AS base
 | 
			
		||||
WORKDIR /app
 | 
			
		||||
 | 
			
		||||
FROM mcr.microsoft.com/dotnet/sdk:6.0 AS build
 | 
			
		||||
WORKDIR /src
 | 
			
		||||
COPY ["Roulette/Roulette.fsproj", "Roulette/"]
 | 
			
		||||
RUN dotnet restore "Roulette/Roulette.fsproj"
 | 
			
		||||
COPY . .
 | 
			
		||||
WORKDIR "/src/Roulette"
 | 
			
		||||
RUN dotnet build "Roulette.fsproj" -c Release -o /app/build
 | 
			
		||||
 | 
			
		||||
FROM build AS publish
 | 
			
		||||
RUN dotnet publish "Roulette.fsproj" -c Release -o /app/publish
 | 
			
		||||
 | 
			
		||||
FROM base AS final
 | 
			
		||||
WORKDIR /app
 | 
			
		||||
COPY --from=publish /app/publish .
 | 
			
		||||
ENTRYPOINT ["dotnet", "Roulette.dll"]
 | 
			
		||||
@ -1,18 +0,0 @@
 | 
			
		||||
<?xml version="1.0" encoding="utf-8"?>
 | 
			
		||||
<Project Sdk="Microsoft.NET.Sdk">
 | 
			
		||||
  <PropertyGroup>
 | 
			
		||||
    <OutputType>Exe</OutputType>
 | 
			
		||||
    <TargetFramework>net6.0</TargetFramework>
 | 
			
		||||
    <DockerDefaultTargetOS>Linux</DockerDefaultTargetOS>
 | 
			
		||||
  </PropertyGroup>
 | 
			
		||||
  <ItemGroup>
 | 
			
		||||
    <Content Include=".dockerignore" />
 | 
			
		||||
    <Content Include="Dockerfile" />
 | 
			
		||||
    <Content Include="paket.references" />
 | 
			
		||||
  </ItemGroup>
 | 
			
		||||
  <ItemGroup>
 | 
			
		||||
    <ProjectReference Include="..\DbService\DbService.fsproj" />
 | 
			
		||||
    <ProjectReference Include="..\Shared\Shared.fsproj" />
 | 
			
		||||
  </ItemGroup>
 | 
			
		||||
  <Import Project="..\.paket\Paket.Restore.targets" />
 | 
			
		||||
</Project>
 | 
			
		||||
@ -1,7 +0,0 @@
 | 
			
		||||
FSharp.Core
 | 
			
		||||
DSharpPlus
 | 
			
		||||
// DSharpPlus.CommandsNext
 | 
			
		||||
// DSharpPlus.Interactivity
 | 
			
		||||
DSharpPlus.SlashCommands
 | 
			
		||||
 | 
			
		||||
// MongoDB.Driver
 | 
			
		||||
@ -1,25 +0,0 @@
 | 
			
		||||
**/.dockerignore
 | 
			
		||||
**/.env
 | 
			
		||||
**/.git
 | 
			
		||||
**/.gitignore
 | 
			
		||||
**/.project
 | 
			
		||||
**/.settings
 | 
			
		||||
**/.toolstarget
 | 
			
		||||
**/.vs
 | 
			
		||||
**/.vscode
 | 
			
		||||
**/.idea
 | 
			
		||||
**/*.*proj.user
 | 
			
		||||
**/*.dbmdl
 | 
			
		||||
**/*.jfm
 | 
			
		||||
**/azds.yaml
 | 
			
		||||
**/bin
 | 
			
		||||
**/charts
 | 
			
		||||
**/docker-compose*
 | 
			
		||||
**/Dockerfile*
 | 
			
		||||
**/node_modules
 | 
			
		||||
**/npm-debug.log
 | 
			
		||||
**/obj
 | 
			
		||||
**/secrets.dev.yaml
 | 
			
		||||
**/values.dev.yaml
 | 
			
		||||
LICENSE
 | 
			
		||||
README.md
 | 
			
		||||
@ -1,18 +0,0 @@
 | 
			
		||||
FROM mcr.microsoft.com/dotnet/runtime:6.0 AS base
 | 
			
		||||
WORKDIR /app
 | 
			
		||||
 | 
			
		||||
FROM mcr.microsoft.com/dotnet/sdk:6.0 AS build
 | 
			
		||||
WORKDIR /src
 | 
			
		||||
COPY ["Store/Store.fsproj", "Store/"]
 | 
			
		||||
RUN dotnet restore "Store/Store.fsproj"
 | 
			
		||||
COPY . .
 | 
			
		||||
WORKDIR "/src/Store"
 | 
			
		||||
RUN dotnet build "Store.fsproj" -c Release -o /app/build
 | 
			
		||||
 | 
			
		||||
FROM build AS publish
 | 
			
		||||
RUN dotnet publish "Store.fsproj" -c Release -o /app/publish
 | 
			
		||||
 | 
			
		||||
FROM base AS final
 | 
			
		||||
WORKDIR /app
 | 
			
		||||
COPY --from=publish /app/publish .
 | 
			
		||||
ENTRYPOINT ["dotnet", "Store.dll"]
 | 
			
		||||
@ -1,18 +0,0 @@
 | 
			
		||||
<?xml version="1.0" encoding="utf-8"?>
 | 
			
		||||
<Project Sdk="Microsoft.NET.Sdk">
 | 
			
		||||
  <PropertyGroup>
 | 
			
		||||
    <OutputType>Exe</OutputType>
 | 
			
		||||
    <TargetFramework>net6.0</TargetFramework>
 | 
			
		||||
    <DockerDefaultTargetOS>Linux</DockerDefaultTargetOS>
 | 
			
		||||
  </PropertyGroup>
 | 
			
		||||
  <ItemGroup>
 | 
			
		||||
    <Content Include=".dockerignore" />
 | 
			
		||||
    <Content Include="Dockerfile" />
 | 
			
		||||
    <Content Include="paket.references" />
 | 
			
		||||
  </ItemGroup>
 | 
			
		||||
  <ItemGroup>
 | 
			
		||||
    <ProjectReference Include="..\DbService\DbService.fsproj" />
 | 
			
		||||
    <ProjectReference Include="..\Shared\Shared.fsproj" />
 | 
			
		||||
  </ItemGroup>
 | 
			
		||||
  <Import Project="..\.paket\Paket.Restore.targets" />
 | 
			
		||||
</Project>
 | 
			
		||||
@ -1,7 +0,0 @@
 | 
			
		||||
FSharp.Core
 | 
			
		||||
DSharpPlus
 | 
			
		||||
// DSharpPlus.CommandsNext
 | 
			
		||||
// DSharpPlus.Interactivity
 | 
			
		||||
DSharpPlus.SlashCommands
 | 
			
		||||
 | 
			
		||||
// MongoDB.Driver
 | 
			
		||||
@ -1,25 +0,0 @@
 | 
			
		||||
**/.dockerignore
 | 
			
		||||
**/.env
 | 
			
		||||
**/.git
 | 
			
		||||
**/.gitignore
 | 
			
		||||
**/.project
 | 
			
		||||
**/.settings
 | 
			
		||||
**/.toolstarget
 | 
			
		||||
**/.vs
 | 
			
		||||
**/.vscode
 | 
			
		||||
**/.idea
 | 
			
		||||
**/*.*proj.user
 | 
			
		||||
**/*.dbmdl
 | 
			
		||||
**/*.jfm
 | 
			
		||||
**/azds.yaml
 | 
			
		||||
**/bin
 | 
			
		||||
**/charts
 | 
			
		||||
**/docker-compose*
 | 
			
		||||
**/Dockerfile*
 | 
			
		||||
**/node_modules
 | 
			
		||||
**/npm-debug.log
 | 
			
		||||
**/obj
 | 
			
		||||
**/secrets.dev.yaml
 | 
			
		||||
**/values.dev.yaml
 | 
			
		||||
LICENSE
 | 
			
		||||
README.md
 | 
			
		||||
@ -1,18 +0,0 @@
 | 
			
		||||
FROM mcr.microsoft.com/dotnet/runtime:6.0 AS base
 | 
			
		||||
WORKDIR /app
 | 
			
		||||
 | 
			
		||||
FROM mcr.microsoft.com/dotnet/sdk:6.0 AS build
 | 
			
		||||
WORKDIR /src
 | 
			
		||||
COPY ["Trainer/Trainer.fsproj", "Trainer/"]
 | 
			
		||||
RUN dotnet restore "Trainer/Trainer.fsproj"
 | 
			
		||||
COPY . .
 | 
			
		||||
WORKDIR "/src/Trainer"
 | 
			
		||||
RUN dotnet build "Trainer.fsproj" -c Release -o /app/build
 | 
			
		||||
 | 
			
		||||
FROM build AS publish
 | 
			
		||||
RUN dotnet publish "Trainer.fsproj" -c Release -o /app/publish
 | 
			
		||||
 | 
			
		||||
FROM base AS final
 | 
			
		||||
WORKDIR /app
 | 
			
		||||
COPY --from=publish /app/publish .
 | 
			
		||||
ENTRYPOINT ["dotnet", "Trainer.dll"]
 | 
			
		||||
@ -1,16 +0,0 @@
 | 
			
		||||
<?xml version="1.0" encoding="utf-8"?>
 | 
			
		||||
<Project Sdk="Microsoft.NET.Sdk">
 | 
			
		||||
  <PropertyGroup>
 | 
			
		||||
    <TargetFramework>net6.0</TargetFramework>
 | 
			
		||||
    <DockerDefaultTargetOS>Linux</DockerDefaultTargetOS>
 | 
			
		||||
  </PropertyGroup>
 | 
			
		||||
  <ItemGroup>
 | 
			
		||||
    <Content Include=".dockerignore" />
 | 
			
		||||
    <Content Include="Dockerfile" />
 | 
			
		||||
  </ItemGroup>
 | 
			
		||||
  <ItemGroup>
 | 
			
		||||
    <ProjectReference Include="..\DbService\DbService.fsproj" />
 | 
			
		||||
    <ProjectReference Include="..\Shared\Shared.fsproj" />
 | 
			
		||||
  </ItemGroup>
 | 
			
		||||
  <Import Project="..\.paket\Paket.Restore.targets" />
 | 
			
		||||
</Project>
 | 
			
		||||
@ -1,7 +0,0 @@
 | 
			
		||||
FSharp.Core
 | 
			
		||||
DSharpPlus
 | 
			
		||||
// DSharpPlus.CommandsNext
 | 
			
		||||
// DSharpPlus.Interactivity
 | 
			
		||||
DSharpPlus.SlashCommands
 | 
			
		||||
 | 
			
		||||
// MongoDB.Driver
 | 
			
		||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user