summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--.idea/.idea.GitStaticPageBuilder/.idea/.name1
-rw-r--r--GitRepoViewer.CorsProxy/GitRepoViewer.CorsProxy.csproj6
-rw-r--r--GitRepoViewer/GitRepoViewer.csproj8
-rw-r--r--GitRepoViewer/Pages/GitLog.razor6
-rw-r--r--GitStaticPageBuilder/GitStaticPageBuilder.csproj2
-rw-r--r--LibGit/LibGit.csproj2
-rw-r--r--LibGitTest/LibGitTest.csproj2
7 files changed, 15 insertions, 12 deletions
diff --git a/.idea/.idea.GitStaticPageBuilder/.idea/.name b/.idea/.idea.GitStaticPageBuilder/.idea/.name
new file mode 100644

index 0000000..20ddf9f --- /dev/null +++ b/.idea/.idea.GitStaticPageBuilder/.idea/.name
@@ -0,0 +1 @@ +GitStaticPageBuilder \ No newline at end of file diff --git a/GitRepoViewer.CorsProxy/GitRepoViewer.CorsProxy.csproj b/GitRepoViewer.CorsProxy/GitRepoViewer.CorsProxy.csproj
index 460f7d2..0391d31 100644 --- a/GitRepoViewer.CorsProxy/GitRepoViewer.CorsProxy.csproj +++ b/GitRepoViewer.CorsProxy/GitRepoViewer.CorsProxy.csproj
@@ -1,14 +1,14 @@ <Project Sdk="Microsoft.NET.Sdk.Web"> <PropertyGroup> - <TargetFramework>net7.0</TargetFramework> + <TargetFramework>net10.0</TargetFramework> <Nullable>enable</Nullable> <ImplicitUsings>enable</ImplicitUsings> </PropertyGroup> <ItemGroup> - <PackageReference Include="Microsoft.AspNetCore.OpenApi" Version="7.0.5" /> - <PackageReference Include="Swashbuckle.AspNetCore" Version="6.4.0" /> + <PackageReference Include="Microsoft.AspNetCore.OpenApi" Version="10.0.1" /> + <PackageReference Include="Swashbuckle.AspNetCore" Version="10.0.1" /> </ItemGroup> </Project> diff --git a/GitRepoViewer/GitRepoViewer.csproj b/GitRepoViewer/GitRepoViewer.csproj
index dc9f0a1..7b171fc 100644 --- a/GitRepoViewer/GitRepoViewer.csproj +++ b/GitRepoViewer/GitRepoViewer.csproj
@@ -1,15 +1,15 @@ <Project Sdk="Microsoft.NET.Sdk.BlazorWebAssembly"> <PropertyGroup> - <TargetFramework>net7.0</TargetFramework> + <TargetFramework>net10.0</TargetFramework> <Nullable>enable</Nullable> <ImplicitUsings>enable</ImplicitUsings> </PropertyGroup> <ItemGroup> - <PackageReference Include="Blazored.SessionStorage" Version="2.3.0" /> - <PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly" Version="7.0.5" /> - <PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly.DevServer" Version="7.0.5" PrivateAssets="all" /> + <PackageReference Include="Blazored.SessionStorage" Version="2.4.0" /> + <PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly" Version="10.0.1" /> + <PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly.DevServer" Version="10.0.1" PrivateAssets="all" /> </ItemGroup> <ItemGroup> diff --git a/GitRepoViewer/Pages/GitLog.razor b/GitRepoViewer/Pages/GitLog.razor
index e518bb6..992ee0a 100644 --- a/GitRepoViewer/Pages/GitLog.razor +++ b/GitRepoViewer/Pages/GitLog.razor
@@ -91,7 +91,7 @@ await ss.WaitAsync(); Console.WriteLine("hi from task"); var a = new GitRepo(new WebRepoSource(queryDictionary["repo"]) - { + { SessionStorage = sessionStorage }).GetCommits(_c).GetAsyncEnumerator(); while ( @@ -106,6 +106,8 @@ } + Console.WriteLine(heads.Count()); + foreach (var head in heads) Console.WriteLine(head.Name); var log = repo.GetCommits(heads.First(x=>x.Name == Rev).CommitId).GetAsyncEnumerator(); while (await log.MoveNextAsync()) { @@ -118,4 +120,4 @@ } } -} \ No newline at end of file +} diff --git a/GitStaticPageBuilder/GitStaticPageBuilder.csproj b/GitStaticPageBuilder/GitStaticPageBuilder.csproj
index 2858582..dcfaae8 100644 --- a/GitStaticPageBuilder/GitStaticPageBuilder.csproj +++ b/GitStaticPageBuilder/GitStaticPageBuilder.csproj
@@ -2,7 +2,7 @@ <PropertyGroup> <OutputType>Exe</OutputType> - <TargetFramework>net7.0</TargetFramework> + <TargetFramework>net10.0</TargetFramework> <ImplicitUsings>enable</ImplicitUsings> <Nullable>enable</Nullable> </PropertyGroup> diff --git a/LibGit/LibGit.csproj b/LibGit/LibGit.csproj
index ac74b55..a55e5be 100644 --- a/LibGit/LibGit.csproj +++ b/LibGit/LibGit.csproj
@@ -1,7 +1,7 @@ <Project Sdk="Microsoft.NET.Sdk"> <PropertyGroup> - <TargetFramework>net7.0</TargetFramework> + <TargetFramework>net10.0</TargetFramework> <ImplicitUsings>enable</ImplicitUsings> <Nullable>enable</Nullable> </PropertyGroup> diff --git a/LibGitTest/LibGitTest.csproj b/LibGitTest/LibGitTest.csproj
index ebad2df..fddc46c 100644 --- a/LibGitTest/LibGitTest.csproj +++ b/LibGitTest/LibGitTest.csproj
@@ -2,7 +2,7 @@ <PropertyGroup> <OutputType>Exe</OutputType> - <TargetFramework>net7.0</TargetFramework> + <TargetFramework>net10.0</TargetFramework> <ImplicitUsings>enable</ImplicitUsings> <Nullable>enable</Nullable> </PropertyGroup>