chore: init
This commit is contained in:
parent
a220045ffd
commit
7f5374d433
18
JOBot.Backend/JOBot.Backend.csproj
Normal file
18
JOBot.Backend/JOBot.Backend.csproj
Normal file
@ -0,0 +1,18 @@
|
|||||||
|
<Project Sdk="Microsoft.NET.Sdk.Web">
|
||||||
|
|
||||||
|
<PropertyGroup>
|
||||||
|
<TargetFramework>net9.0</TargetFramework>
|
||||||
|
<Nullable>enable</Nullable>
|
||||||
|
<ImplicitUsings>enable</ImplicitUsings>
|
||||||
|
</PropertyGroup>
|
||||||
|
|
||||||
|
<ItemGroup>
|
||||||
|
<PackageReference Include="Google.Protobuf" Version="3.30.2" />
|
||||||
|
<PackageReference Include="Grpc.AspNetCore" Version="2.71.0" />
|
||||||
|
<PackageReference Include="Grpc.Tools" Version="2.71.0">
|
||||||
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
||||||
|
<PrivateAssets>all</PrivateAssets>
|
||||||
|
</PackageReference>
|
||||||
|
</ItemGroup>
|
||||||
|
|
||||||
|
</Project>
|
6
JOBot.Backend/Program.cs
Normal file
6
JOBot.Backend/Program.cs
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
var builder = WebApplication.CreateBuilder(args);
|
||||||
|
var app = builder.Build();
|
||||||
|
|
||||||
|
app.MapGet("/", () => "Hello World!");
|
||||||
|
|
||||||
|
app.Run();
|
23
JOBot.Backend/Properties/launchSettings.json
Normal file
23
JOBot.Backend/Properties/launchSettings.json
Normal file
@ -0,0 +1,23 @@
|
|||||||
|
{
|
||||||
|
"$schema": "https://json.schemastore.org/launchsettings.json",
|
||||||
|
"profiles": {
|
||||||
|
"http": {
|
||||||
|
"commandName": "Project",
|
||||||
|
"dotnetRunMessages": true,
|
||||||
|
"launchBrowser": true,
|
||||||
|
"applicationUrl": "http://localhost:5253",
|
||||||
|
"environmentVariables": {
|
||||||
|
"ASPNETCORE_ENVIRONMENT": "Development"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"https": {
|
||||||
|
"commandName": "Project",
|
||||||
|
"dotnetRunMessages": true,
|
||||||
|
"launchBrowser": true,
|
||||||
|
"applicationUrl": "https://localhost:7176;http://localhost:5253",
|
||||||
|
"environmentVariables": {
|
||||||
|
"ASPNETCORE_ENVIRONMENT": "Development"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
8
JOBot.Backend/appsettings.Development.json
Normal file
8
JOBot.Backend/appsettings.Development.json
Normal file
@ -0,0 +1,8 @@
|
|||||||
|
{
|
||||||
|
"Logging": {
|
||||||
|
"LogLevel": {
|
||||||
|
"Default": "Information",
|
||||||
|
"Microsoft.AspNetCore": "Warning"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
9
JOBot.Backend/appsettings.json
Normal file
9
JOBot.Backend/appsettings.json
Normal file
@ -0,0 +1,9 @@
|
|||||||
|
{
|
||||||
|
"Logging": {
|
||||||
|
"LogLevel": {
|
||||||
|
"Default": "Information",
|
||||||
|
"Microsoft.AspNetCore": "Warning"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"AllowedHosts": "*"
|
||||||
|
}
|
19
JOBot.TClient/JOBot.TClient.csproj
Normal file
19
JOBot.TClient/JOBot.TClient.csproj
Normal file
@ -0,0 +1,19 @@
|
|||||||
|
<Project Sdk="Microsoft.NET.Sdk">
|
||||||
|
|
||||||
|
<PropertyGroup>
|
||||||
|
<OutputType>Exe</OutputType>
|
||||||
|
<TargetFramework>net9.0</TargetFramework>
|
||||||
|
<ImplicitUsings>enable</ImplicitUsings>
|
||||||
|
<Nullable>enable</Nullable>
|
||||||
|
</PropertyGroup>
|
||||||
|
|
||||||
|
<ItemGroup>
|
||||||
|
<PackageReference Include="Google.Protobuf" Version="3.30.2" />
|
||||||
|
<PackageReference Include="Grpc.Net.Client" Version="2.71.0" />
|
||||||
|
<PackageReference Include="Grpc.Tools" Version="2.71.0">
|
||||||
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
||||||
|
<PrivateAssets>all</PrivateAssets>
|
||||||
|
</PackageReference>
|
||||||
|
</ItemGroup>
|
||||||
|
|
||||||
|
</Project>
|
2
JOBot.TClient/Program.cs
Normal file
2
JOBot.TClient/Program.cs
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
// See https://aka.ms/new-console-template for more information
|
||||||
|
Console.WriteLine("Hello, World!");
|
48
JOBot.sln
Normal file
48
JOBot.sln
Normal file
@ -0,0 +1,48 @@
|
|||||||
|
|
||||||
|
Microsoft Visual Studio Solution File, Format Version 12.00
|
||||||
|
# Visual Studio Version 17
|
||||||
|
VisualStudioVersion = 17.0.31903.59
|
||||||
|
MinimumVisualStudioVersion = 10.0.40219.1
|
||||||
|
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "JOBot.Backend", "JOBot.Backend\JOBot.Backend.csproj", "{BDEAC1FF-378A-4D10-A3FB-E4CEAD48F610}"
|
||||||
|
EndProject
|
||||||
|
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "JOBot.TClient", "JOBot.TClient\JOBot.TClient.csproj", "{4526BCB1-DAD3-430C-BD7C-9C114DFE9A2A}"
|
||||||
|
EndProject
|
||||||
|
Global
|
||||||
|
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
||||||
|
Debug|Any CPU = Debug|Any CPU
|
||||||
|
Debug|x64 = Debug|x64
|
||||||
|
Debug|x86 = Debug|x86
|
||||||
|
Release|Any CPU = Release|Any CPU
|
||||||
|
Release|x64 = Release|x64
|
||||||
|
Release|x86 = Release|x86
|
||||||
|
EndGlobalSection
|
||||||
|
GlobalSection(ProjectConfigurationPlatforms) = postSolution
|
||||||
|
{BDEAC1FF-378A-4D10-A3FB-E4CEAD48F610}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||||
|
{BDEAC1FF-378A-4D10-A3FB-E4CEAD48F610}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||||
|
{BDEAC1FF-378A-4D10-A3FB-E4CEAD48F610}.Debug|x64.ActiveCfg = Debug|Any CPU
|
||||||
|
{BDEAC1FF-378A-4D10-A3FB-E4CEAD48F610}.Debug|x64.Build.0 = Debug|Any CPU
|
||||||
|
{BDEAC1FF-378A-4D10-A3FB-E4CEAD48F610}.Debug|x86.ActiveCfg = Debug|Any CPU
|
||||||
|
{BDEAC1FF-378A-4D10-A3FB-E4CEAD48F610}.Debug|x86.Build.0 = Debug|Any CPU
|
||||||
|
{BDEAC1FF-378A-4D10-A3FB-E4CEAD48F610}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||||
|
{BDEAC1FF-378A-4D10-A3FB-E4CEAD48F610}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||||
|
{BDEAC1FF-378A-4D10-A3FB-E4CEAD48F610}.Release|x64.ActiveCfg = Release|Any CPU
|
||||||
|
{BDEAC1FF-378A-4D10-A3FB-E4CEAD48F610}.Release|x64.Build.0 = Release|Any CPU
|
||||||
|
{BDEAC1FF-378A-4D10-A3FB-E4CEAD48F610}.Release|x86.ActiveCfg = Release|Any CPU
|
||||||
|
{BDEAC1FF-378A-4D10-A3FB-E4CEAD48F610}.Release|x86.Build.0 = Release|Any CPU
|
||||||
|
{4526BCB1-DAD3-430C-BD7C-9C114DFE9A2A}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||||
|
{4526BCB1-DAD3-430C-BD7C-9C114DFE9A2A}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||||
|
{4526BCB1-DAD3-430C-BD7C-9C114DFE9A2A}.Debug|x64.ActiveCfg = Debug|Any CPU
|
||||||
|
{4526BCB1-DAD3-430C-BD7C-9C114DFE9A2A}.Debug|x64.Build.0 = Debug|Any CPU
|
||||||
|
{4526BCB1-DAD3-430C-BD7C-9C114DFE9A2A}.Debug|x86.ActiveCfg = Debug|Any CPU
|
||||||
|
{4526BCB1-DAD3-430C-BD7C-9C114DFE9A2A}.Debug|x86.Build.0 = Debug|Any CPU
|
||||||
|
{4526BCB1-DAD3-430C-BD7C-9C114DFE9A2A}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||||
|
{4526BCB1-DAD3-430C-BD7C-9C114DFE9A2A}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||||
|
{4526BCB1-DAD3-430C-BD7C-9C114DFE9A2A}.Release|x64.ActiveCfg = Release|Any CPU
|
||||||
|
{4526BCB1-DAD3-430C-BD7C-9C114DFE9A2A}.Release|x64.Build.0 = Release|Any CPU
|
||||||
|
{4526BCB1-DAD3-430C-BD7C-9C114DFE9A2A}.Release|x86.ActiveCfg = Release|Any CPU
|
||||||
|
{4526BCB1-DAD3-430C-BD7C-9C114DFE9A2A}.Release|x86.Build.0 = Release|Any CPU
|
||||||
|
EndGlobalSection
|
||||||
|
GlobalSection(SolutionProperties) = preSolution
|
||||||
|
HideSolutionNode = FALSE
|
||||||
|
EndGlobalSection
|
||||||
|
EndGlobal
|
Loading…
x
Reference in New Issue
Block a user