changed structure

This commit is contained in:
2025-01-09 13:23:49 -06:00
parent 46b278e08a
commit f67d00c921
10 changed files with 28 additions and 33 deletions
-16
View File
@@ -1,16 +0,0 @@
Microsoft Visual Studio Solution File, Format Version 12.00
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "barkmanAPI", "barkmanAPI\barkmanAPI.csproj", "{625B24F1-FA8F-45F6-B3C8-22C538112B65}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{625B24F1-FA8F-45F6-B3C8-22C538112B65}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{625B24F1-FA8F-45F6-B3C8-22C538112B65}.Debug|Any CPU.Build.0 = Debug|Any CPU
{625B24F1-FA8F-45F6-B3C8-22C538112B65}.Release|Any CPU.ActiveCfg = Release|Any CPU
{625B24F1-FA8F-45F6-B3C8-22C538112B65}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
EndGlobal
@@ -6,10 +6,10 @@ using Microsoft.EntityFrameworkCore.Storage.ValueConversion;
#nullable disable #nullable disable
namespace barkman.Migrations namespace barkmanapi.Migrations
{ {
[DbContext(typeof(BarkContext))] [DbContext(typeof(BarkContext))]
[Migration("20250109005806_InitialCreate")] [Migration("20250109192017_InitialCreate")]
partial class InitialCreate partial class InitialCreate
{ {
/// <inheritdoc /> /// <inheritdoc />
@@ -2,7 +2,7 @@
#nullable disable #nullable disable
namespace barkman.Migrations namespace barkmanapi.Migrations
{ {
/// <inheritdoc /> /// <inheritdoc />
public partial class InitialCreate : Migration public partial class InitialCreate : Migration
@@ -5,7 +5,7 @@ using Microsoft.EntityFrameworkCore.Storage.ValueConversion;
#nullable disable #nullable disable
namespace barkman.Migrations namespace barkmanapi.Migrations
{ {
[DbContext(typeof(BarkContext))] [DbContext(typeof(BarkContext))]
partial class BarkContextModelSnapshot : ModelSnapshot partial class BarkContextModelSnapshot : ModelSnapshot
+2 -2
View File
@@ -5,7 +5,7 @@
"commandName": "Project", "commandName": "Project",
"dotnetRunMessages": true, "dotnetRunMessages": true,
"launchBrowser": false, "launchBrowser": false,
"applicationUrl": "http://localhost:5211", "applicationUrl": "http://localhost:5145",
"environmentVariables": { "environmentVariables": {
"ASPNETCORE_ENVIRONMENT": "Development" "ASPNETCORE_ENVIRONMENT": "Development"
} }
@@ -14,7 +14,7 @@
"commandName": "Project", "commandName": "Project",
"dotnetRunMessages": true, "dotnetRunMessages": true,
"launchBrowser": false, "launchBrowser": false,
"applicationUrl": "https://localhost:7157;http://localhost:5211", "applicationUrl": "https://localhost:7230;http://localhost:5145",
"environmentVariables": { "environmentVariables": {
"ASPNETCORE_ENVIRONMENT": "Development" "ASPNETCORE_ENVIRONMENT": "Development"
} }
-6
View File
@@ -1,6 +0,0 @@
@barkman_HostAddress = http://localhost:5211
GET {{barkman_HostAddress}}/weatherforecast/
Accept: application/json
###
-5
View File
@@ -4,7 +4,6 @@
<TargetFramework>net9.0</TargetFramework> <TargetFramework>net9.0</TargetFramework>
<Nullable>enable</Nullable> <Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings> <ImplicitUsings>enable</ImplicitUsings>
<RootNamespace>barkman</RootNamespace>
</PropertyGroup> </PropertyGroup>
<ItemGroup> <ItemGroup>
@@ -17,8 +16,4 @@
<PackageReference Include="Swashbuckle.AspNetCore" Version="6.1.4" /> <PackageReference Include="Swashbuckle.AspNetCore" Version="6.1.4" />
</ItemGroup> </ItemGroup>
<ItemGroup>
<Folder Include="Migrations\" />
</ItemGroup>
</Project> </Project>
+6
View File
@@ -0,0 +1,6 @@
@barkmanapi_HostAddress = http://localhost:5145
GET {{barkmanapi_HostAddress}}/weatherforecast/
Accept: application/json
###
+16
View File
@@ -0,0 +1,16 @@
Microsoft Visual Studio Solution File, Format Version 12.00
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "barkmanapi", "barkmanapi.csproj", "{4052ACDF-C763-4F04-A464-30D2F8CBD2A1}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{4052ACDF-C763-4F04-A464-30D2F8CBD2A1}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{4052ACDF-C763-4F04-A464-30D2F8CBD2A1}.Debug|Any CPU.Build.0 = Debug|Any CPU
{4052ACDF-C763-4F04-A464-30D2F8CBD2A1}.Release|Any CPU.ActiveCfg = Release|Any CPU
{4052ACDF-C763-4F04-A464-30D2F8CBD2A1}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
EndGlobal
View File