Skip to content

Commit cbebca1

Browse files
committed
upgrade nugets
1 parent b147623 commit cbebca1

File tree

5 files changed

+8
-15
lines changed

5 files changed

+8
-15
lines changed

src/Demos/GreenFeetWorkFlow.Tests/GreenFeetWorkFlow.Tests.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<Project Sdk="Microsoft.NET.Sdk">
1+
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
44
<TargetFramework>net8.0</TargetFramework>
@@ -8,7 +8,7 @@
88
</PropertyGroup>
99

1010
<ItemGroup>
11-
<PackageReference Include="Autofac" Version="7.1.0" />
11+
<PackageReference Include="Autofac" Version="8.0.0" />
1212
<PackageReference Include="FluentAssertions" Version="6.12.0" />
1313
<PackageReference Include="LineCounter" Version="1.1.1" />
1414
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.8.0" />

src/Demos/GreenFeetWorkFlow.Tests/LineCounterUpdateReadme.cs

Lines changed: 3 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,5 @@
11
using KbgSoft.LineCounter;
2-
using NUnit.Framework;
32
using System.Reflection;
4-
using System.Text.RegularExpressions;
5-
6-
using System;
7-
using System.Collections.Generic;
8-
using System.IO;
9-
using System.Linq;
10-
using System.Text.RegularExpressions;
11-
using System.Threading.Tasks;
12-
using System.Threading;
133

144
namespace GreenFeetWorkflow.Tests;
155

@@ -21,6 +11,7 @@ public void UpdateReadme()
2111
{
2212
string topPath = Path.GetFullPath(Path.Combine(Assembly.GetExecutingAssembly().Location, "..", "..", "..", "..", "..", "..", ".."));
2313

14+
// code
2415
string sourcePath = Path.GetFullPath(Path.Combine(topPath, "src"));
2516
Console.WriteLine($"root: {sourcePath}");
2617
var sourceCounter = new LineCounting();
@@ -29,12 +20,14 @@ public void UpdateReadme()
2920
Console.WriteLine($"counting:\n{string.Join("\n", files)}");
3021
var sourceStats = sourceCounter.CountFiles(files);
3122

23+
// doc
3224
var documentationCounter = new LineCounting();
3325
var documentationStats = documentationCounter.CountFiles(
3426
documentationCounter
3527
.GetFiles(topPath)
3628
.Where(x => x.EndsWith(".md")));
3729

30+
// merge
3831
sourceStats.Add("Markdown",
3932
new Statistics()
4033
{

src/Product/GreenFeetWorkFlow.AdoPersistence/GreenFeetWorkFlow.AdoMsSql.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
</ItemGroup>
3232

3333
<ItemGroup>
34-
<PackageReference Include="Microsoft.Data.SqlClient" Version="5.1.4" />
34+
<PackageReference Include="Microsoft.Data.SqlClient" Version="5.1.5" />
3535
</ItemGroup>
3636

3737
<ItemGroup>

src/Product/GreenFeetWorkFlow.Ioc.Autofac/GreenFeetWorkFlow.Ioc.Autofac.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636
</ItemGroup>
3737

3838
<ItemGroup>
39-
<PackageReference Include="Autofac" Version="7.1.0" />
39+
<PackageReference Include="Autofac" Version="8.0.0" />
4040
<ProjectReference Include="..\GreenFeetWorkFlow\GreenFeetWorkFlow.csproj" />
4141

4242
</ItemGroup>

src/createRelease.cmd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
cd C:\src\GreenFeetWorkFlow\src
22
copy ..\README.md .\Product\GreenFeetWorkFlow\README.md
33
dotnet build
4-
dotnet pack --include-source -p:PackageVersion=1.2.0.0 -o:.\releases
4+
dotnet pack --include-source -p:PackageVersion=1.3.2.0 -o:.\releases
55
cd releases
66
# dotnet nuget push *.symbols.nupkg -s https://api.nuget.org/v3/index.json --skip-duplicate --api-key MYKEYHERE
77
# del *

0 commit comments

Comments
 (0)