Skip to content

Commit

Permalink
Merge pull request haacked#74 from haacked/haacked/blazor-web
Browse files Browse the repository at this point in the history
Convert web front end to Blazor
  • Loading branch information
haacked authored Sep 24, 2024
2 parents 2c272b0 + e566b7e commit b42e0fc
Show file tree
Hide file tree
Showing 129 changed files with 2,132 additions and 13,579 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ jobs:

- name: Upload Test Snapshots
if: failure()
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: verify-test-results
path: |
Expand Down
12 changes: 6 additions & 6 deletions AIDemo.sln
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,6 @@ 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}") = "AIDemo.Web", "src\AIDemo.Web\AIDemo.Web.csproj", "{C368B277-F8C5-425D-8BB9-8869D90627E4}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "_scripts", "_scripts", "{7FCDD3F2-5976-443D-B5C2-AC71C062C0FB}"
ProjectSection(SolutionItems) = preProject
script\bootstrap = script\bootstrap
Expand Down Expand Up @@ -59,6 +57,8 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "AIDemo.Hubs", "src\AIDemo.H
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "AIDemo.SemanticKernel", "src\AIDemo.SemanticKernel\AIDemo.SemanticKernel.csproj", "{CEDC78FB-5DB8-4F64-9196-9517F4C6DF23}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "AIDemo.Web", "src\AIDemo.Web\AIDemo.Web.csproj", "{071512D9-E2D9-4080-9CA8-E333B63062F6}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Expand All @@ -68,10 +68,6 @@ Global
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{C368B277-F8C5-425D-8BB9-8869D90627E4}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{C368B277-F8C5-425D-8BB9-8869D90627E4}.Debug|Any CPU.Build.0 = Debug|Any CPU
{C368B277-F8C5-425D-8BB9-8869D90627E4}.Release|Any CPU.ActiveCfg = Release|Any CPU
{C368B277-F8C5-425D-8BB9-8869D90627E4}.Release|Any CPU.Build.0 = Release|Any CPU
{E5AB31CE-B06A-4F6B-BFFF-21E432626739}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{E5AB31CE-B06A-4F6B-BFFF-21E432626739}.Debug|Any CPU.Build.0 = Debug|Any CPU
{E5AB31CE-B06A-4F6B-BFFF-21E432626739}.Release|Any CPU.ActiveCfg = Release|Any CPU
Expand Down Expand Up @@ -100,6 +96,10 @@ Global
{CEDC78FB-5DB8-4F64-9196-9517F4C6DF23}.Debug|Any CPU.Build.0 = Debug|Any CPU
{CEDC78FB-5DB8-4F64-9196-9517F4C6DF23}.Release|Any CPU.ActiveCfg = Release|Any CPU
{CEDC78FB-5DB8-4F64-9196-9517F4C6DF23}.Release|Any CPU.Build.0 = Release|Any CPU
{071512D9-E2D9-4080-9CA8-E333B63062F6}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{071512D9-E2D9-4080-9CA8-E333B63062F6}.Debug|Any CPU.Build.0 = Debug|Any CPU
{071512D9-E2D9-4080-9CA8-E333B63062F6}.Release|Any CPU.ActiveCfg = Release|Any CPU
{071512D9-E2D9-4080-9CA8-E333B63062F6}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(NestedProjects) = preSolution
{367AFC48-B548-40A9-9DEC-B56979EC7082} = {7FCDD3F2-5976-443D-B5C2-AC71C062C0FB}
Expand Down
7 changes: 5 additions & 2 deletions Directory.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,6 @@
<AnalysisMode>AllEnabledByDefault</AnalysisMode>
<RootDir>$([System.IO.Path]::GetFullPath('$(MSBuildThisFileDirectory)'))</RootDir>
<CIBuild Condition=" '$(NBGV_CloudBuildNumber)' != '' or '$(GITHUB_SHA)' != '' ">true</CIBuild>
<RestorePackagesWithLockFile>true</RestorePackagesWithLockFile>
<RestoreLockedMode Condition=" '$(RestoreLockedMode)' == '' and '$(CIBuild)' == 'true' ">true</RestoreLockedMode>
<Nullable>enable</Nullable>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<DefaultTargetFramework>net7.0</DefaultTargetFramework>
Expand Down Expand Up @@ -43,5 +41,10 @@
which ASP.NET Core doesn't have.
-->
<NoWarn>CA2007;$(NoWarn)</NoWarn>

<!--
CA5394: Do not use insecure randomness
-->
<NoWarn>CA5394;$(NoWarn)</NoWarn>
</PropertyGroup>
</Project>
2 changes: 1 addition & 1 deletion global.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"sdk": {
"channel": "8.0",
"version": "8.0.100",
"version": "8.0.401",
"allowPrerelease": true,
"installUrl": "https://dotnet.microsoft.com/en-us/download/dotnet/8.0",
"rollForward": "latestFeature"
Expand Down
6 changes: 0 additions & 6 deletions package-lock.json

This file was deleted.

Loading

0 comments on commit b42e0fc

Please sign in to comment.