Skip to content

Commit

Permalink
move project folders up to root of repo
Browse files Browse the repository at this point in the history
  • Loading branch information
erinnmclaughlin committed May 4, 2024
1 parent f92345f commit 47272af
Show file tree
Hide file tree
Showing 46 changed files with 22 additions and 68 deletions.
57 changes: 0 additions & 57 deletions .github/workflows/main_erinnmclaughlin-dev.yml

This file was deleted.

2 changes: 1 addition & 1 deletion .github/workflows/main_erinnmclaughlin.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
run: dotnet build -c Release

- name: Publish
run: dotnet publish "src/Site/Site/Site.csproj" -c Release -o "${{env.DOTNET_ROOT}}/myapp"
run: dotnet publish "Site/Site.csproj" -c Release -o "${{env.DOTNET_ROOT}}/myapp"

- name: Upload artifact for deployment job
uses: actions/upload-artifact@v4
Expand Down
20 changes: 10 additions & 10 deletions PersonalWebsite.sln
Original file line number Diff line number Diff line change
Expand Up @@ -3,24 +3,24 @@ Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 17
VisualStudioVersion = 17.4.33205.214
MinimumVisualStudioVersion = 10.0.40219.1
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Site", "src\Site\Site\Site.csproj", "{478039A1-B85B-4EF9-943E-D2EEEB522919}"
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Site.Client", "Site.Client\Site.Client.csproj", "{C28F2D9F-4C5F-431C-98AB-DE25ADA63F90}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Site.Client", "src\Site\Site.Client\Site.Client.csproj", "{905FA50A-C616-4339-BFE1-D68CA9C262A8}"
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Site", "Site\Site.csproj", "{949D09EF-7213-4320-A9AE-BB148515EEF7}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{478039A1-B85B-4EF9-943E-D2EEEB522919}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{478039A1-B85B-4EF9-943E-D2EEEB522919}.Debug|Any CPU.Build.0 = Debug|Any CPU
{478039A1-B85B-4EF9-943E-D2EEEB522919}.Release|Any CPU.ActiveCfg = Release|Any CPU
{478039A1-B85B-4EF9-943E-D2EEEB522919}.Release|Any CPU.Build.0 = Release|Any CPU
{905FA50A-C616-4339-BFE1-D68CA9C262A8}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{905FA50A-C616-4339-BFE1-D68CA9C262A8}.Debug|Any CPU.Build.0 = Debug|Any CPU
{905FA50A-C616-4339-BFE1-D68CA9C262A8}.Release|Any CPU.ActiveCfg = Release|Any CPU
{905FA50A-C616-4339-BFE1-D68CA9C262A8}.Release|Any CPU.Build.0 = Release|Any CPU
{C28F2D9F-4C5F-431C-98AB-DE25ADA63F90}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{C28F2D9F-4C5F-431C-98AB-DE25ADA63F90}.Debug|Any CPU.Build.0 = Debug|Any CPU
{C28F2D9F-4C5F-431C-98AB-DE25ADA63F90}.Release|Any CPU.ActiveCfg = Release|Any CPU
{C28F2D9F-4C5F-431C-98AB-DE25ADA63F90}.Release|Any CPU.Build.0 = Release|Any CPU
{949D09EF-7213-4320-A9AE-BB148515EEF7}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{949D09EF-7213-4320-A9AE-BB148515EEF7}.Debug|Any CPU.Build.0 = Debug|Any CPU
{949D09EF-7213-4320-A9AE-BB148515EEF7}.Release|Any CPU.ActiveCfg = Release|Any CPU
{949D09EF-7213-4320-A9AE-BB148515EEF7}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
6 changes: 6 additions & 0 deletions Site/AppSettings.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
namespace Site;

public sealed class AppSettings
{
public Dictionary<string, string> NavigationLinks { get; set; } = [];
}
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 2 additions & 0 deletions src/Site/Site/Program.cs → Site/Program.cs
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
using Microsoft.AspNetCore.ResponseCompression;
using Site;
using Site.Components;

var builder = WebApplication.CreateBuilder(args);

builder.Services.Configure<AppSettings>(builder.Configuration);
builder.AddAibbaDefaults();

builder.Services
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
3 changes: 3 additions & 0 deletions src/Site/Site/appsettings.json → Site/appsettings.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@
"TextCompletionModel": "gpt-3.5-turbo",
"TextEmbeddingModel": "text-embedding-3-small"
},
"NavigationLinks": {
"GitHub": ""
},
"Logging": {
"LogLevel": {
"Default": "Information",
Expand Down
File renamed without changes.
File renamed without changes
File renamed without changes.
File renamed without changes.

0 comments on commit 47272af

Please sign in to comment.