Skip to content

Commit

Permalink
test update
Browse files Browse the repository at this point in the history
  • Loading branch information
lukeleedev committed Oct 27, 2023
1 parent 7b1c146 commit f21f200
Show file tree
Hide file tree
Showing 5 changed files with 26 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/Debug
/Release
/obj
Debug/
Release/
obj/
.sln
.dll
5 changes: 4 additions & 1 deletion Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,10 @@

// Configure the HTTP request pipeline.
app.UseSwagger();
app.UseSwaggerUI();
app.UseSwaggerUI(options =>{
options.SwaggerEndpoint("/swagger/v1/swagger.json", "v1");
options.RoutePrefix = string.Empty;
});

app.UseHttpsRedirection();

Expand Down
File renamed without changes.
13 changes: 13 additions & 0 deletions learn_github_action.Domain/learn_github_action.Domain.csproj
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>net7.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>

<ItemGroup>
<Folder Include="Dto\" />
</ItemGroup>

</Project>
6 changes: 6 additions & 0 deletions learn_github_action.sln
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@ VisualStudioVersion = 17.5.002.0
MinimumVisualStudioVersion = 10.0.40219.1
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "learn_github_action", "learn_github_action.csproj", "{D1FCD99E-06F0-490E-B732-66FA92B94E17}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "learn_github_action.Domain", "learn_github_action.Domain\learn_github_action.Domain.csproj", "{ED982983-F590-4949-9907-4BF74EC0C1F2}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Expand All @@ -15,6 +17,10 @@ Global
{D1FCD99E-06F0-490E-B732-66FA92B94E17}.Debug|Any CPU.Build.0 = Debug|Any CPU
{D1FCD99E-06F0-490E-B732-66FA92B94E17}.Release|Any CPU.ActiveCfg = Release|Any CPU
{D1FCD99E-06F0-490E-B732-66FA92B94E17}.Release|Any CPU.Build.0 = Release|Any CPU
{ED982983-F590-4949-9907-4BF74EC0C1F2}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{ED982983-F590-4949-9907-4BF74EC0C1F2}.Debug|Any CPU.Build.0 = Debug|Any CPU
{ED982983-F590-4949-9907-4BF74EC0C1F2}.Release|Any CPU.ActiveCfg = Release|Any CPU
{ED982983-F590-4949-9907-4BF74EC0C1F2}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
Expand Down

0 comments on commit f21f200

Please sign in to comment.