Skip to content

Commit e6e0fcd

Browse files
committed
⬆ Bumping dependencies
1 parent 876a41c commit e6e0fcd

File tree

7 files changed

+885
-813
lines changed

7 files changed

+885
-813
lines changed

.vscode/launch.json

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
{
2+
"version": "0.2.0",
3+
"configurations": [
4+
{
5+
// Use IntelliSense to find out which attributes exist for C# debugging
6+
// Use hover for the description of the existing attributes
7+
// For further information visit https://github.com/OmniSharp/omnisharp-vscode/blob/master/debugger-launchjson.md
8+
"name": ".NET Core Launch (console)",
9+
"type": "coreclr",
10+
"request": "launch",
11+
"preLaunchTask": "build",
12+
// If you have changed target frameworks, make sure to update the program path.
13+
"program": "${workspaceFolder}/WhatIsHeDoing.DomainModels.Tests/bin/Debug/netcoreapp3.1/WhatIsHeDoing.DomainModels.Tests.dll",
14+
"args": [],
15+
"cwd": "${workspaceFolder}/WhatIsHeDoing.DomainModels.Tests",
16+
// For more information about the 'console' field, see https://aka.ms/VSCode-CS-LaunchJson-Console
17+
"console": "internalConsole",
18+
"stopAtEntry": false
19+
},
20+
{
21+
"name": ".NET Core Attach",
22+
"type": "coreclr",
23+
"request": "attach",
24+
"processId": "${command:pickProcess}"
25+
}
26+
]
27+
}

.vscode/tasks.json

Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
{
2+
"version": "2.0.0",
3+
"tasks": [
4+
{
5+
"label": "build",
6+
"command": "dotnet",
7+
"type": "process",
8+
"args": [
9+
"build",
10+
"${workspaceFolder}/WhatIsHeDoing.DomainModels.Tests/WhatIsHeDoing.DomainModels.Tests.csproj",
11+
"/property:GenerateFullPaths=true",
12+
"/consoleloggerparameters:NoSummary"
13+
],
14+
"problemMatcher": "$msCompile"
15+
},
16+
{
17+
"label": "publish",
18+
"command": "dotnet",
19+
"type": "process",
20+
"args": [
21+
"publish",
22+
"${workspaceFolder}/WhatIsHeDoing.DomainModels.Tests/WhatIsHeDoing.DomainModels.Tests.csproj",
23+
"/property:GenerateFullPaths=true",
24+
"/consoleloggerparameters:NoSummary"
25+
],
26+
"problemMatcher": "$msCompile"
27+
},
28+
{
29+
"label": "watch",
30+
"command": "dotnet",
31+
"type": "process",
32+
"args": [
33+
"watch",
34+
"run",
35+
"${workspaceFolder}/WhatIsHeDoing.DomainModels.Tests/WhatIsHeDoing.DomainModels.Tests.csproj",
36+
"/property:GenerateFullPaths=true",
37+
"/consoleloggerparameters:NoSummary"
38+
],
39+
"problemMatcher": "$msCompile"
40+
}
41+
]
42+
}
Lines changed: 27 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -1,34 +1,34 @@
11
<Project Sdk="Microsoft.NET.Sdk.Web">
2-
<PropertyGroup>
3-
<TargetFramework>netcoreapp3.1</TargetFramework>
4-
</PropertyGroup>
2+
<PropertyGroup>
3+
<TargetFramework>netcoreapp3.1</TargetFramework>
4+
</PropertyGroup>
55

6-
<PropertyGroup>
7-
<DocumentationFile>bin\netcoreapp3.1\WhatIsHeDoing.DomainModels.APITest.xml</DocumentationFile>
8-
<OutputPath>bin\</OutputPath>
9-
<NoWarn>1591;1701;1702;1705;AD0001;SG0016</NoWarn>
10-
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
11-
<WarningsAsErrors />
12-
<CodeAnalysisRuleSet>..\WhatIsHeDoing.ruleset</CodeAnalysisRuleSet>
13-
</PropertyGroup>
6+
<PropertyGroup>
7+
<DocumentationFile>bin\netcoreapp3.1\WhatIsHeDoing.DomainModels.APITest.xml</DocumentationFile>
8+
<OutputPath>bin\</OutputPath>
9+
<NoWarn>1591;1701;1702;1705;AD0001;SG0016</NoWarn>
10+
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
11+
<WarningsAsErrors />
12+
<CodeAnalysisRuleSet>..\WhatIsHeDoing.ruleset</CodeAnalysisRuleSet>
13+
</PropertyGroup>
1414

15-
<ItemGroup>
16-
<Folder Include="wwwroot\" />
17-
</ItemGroup>
15+
<ItemGroup>
16+
<Folder Include="wwwroot\" />
17+
</ItemGroup>
1818

19-
<ItemGroup>
20-
<PackageReference Include="Microsoft.CodeAnalysis.Analyzers" Version="2.9.4" />
21-
<PackageReference Include="Microsoft.VisualStudio.Web.CodeGeneration.Design" Version="2.2.3" />
22-
<PackageReference Include="RoslynSecurityGuard" Version="2.3.0" />
23-
<PackageReference Include="StyleCop.Analyzers" Version="1.0.2" />
24-
<PackageReference Include="Swashbuckle.AspNetCore" Version="6.0.0" />
25-
</ItemGroup>
19+
<ItemGroup>
20+
<PackageReference Include="Microsoft.CodeAnalysis.Analyzers" Version="3.3.2" />
21+
<PackageReference Include="Microsoft.VisualStudio.Web.CodeGeneration.Design" Version="3.1.5" />
22+
<PackageReference Include="RoslynSecurityGuard" Version="2.3.0" />
23+
<PackageReference Include="StyleCop.Analyzers" Version="1.1.118" />
24+
<PackageReference Include="Swashbuckle.AspNetCore" Version="6.1.2" />
25+
</ItemGroup>
2626

27-
<ItemGroup>
28-
<DotNetCliToolReference Include="Microsoft.VisualStudio.Web.CodeGeneration.Tools" Version="2.0.0" />
29-
</ItemGroup>
27+
<ItemGroup>
28+
<DotNetCliToolReference Include="Microsoft.VisualStudio.Web.CodeGeneration.Tools" Version="2.0.0" />
29+
</ItemGroup>
3030

31-
<ItemGroup>
32-
<ProjectReference Include="..\WhatIsHeDoing.DomainModels\WhatIsHeDoing.DomainModels.csproj" />
33-
</ItemGroup>
31+
<ItemGroup>
32+
<ProjectReference Include="..\WhatIsHeDoing.DomainModels\WhatIsHeDoing.DomainModels.csproj" />
33+
</ItemGroup>
3434
</Project>
Lines changed: 24 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -1,30 +1,30 @@
11
<Project Sdk="Microsoft.NET.Sdk">
2-
<PropertyGroup>
3-
<TargetFramework>netcoreapp3.1</TargetFramework>
4-
<IsPackable>false</IsPackable>
5-
</PropertyGroup>
2+
<PropertyGroup>
3+
<TargetFramework>netcoreapp3.1</TargetFramework>
4+
<IsPackable>false</IsPackable>
5+
</PropertyGroup>
66

7-
<PropertyGroup>
8-
<CodeAnalysisRuleSet>..\WhatIsHeDoing.ruleset</CodeAnalysisRuleSet>
9-
</PropertyGroup>
7+
<PropertyGroup>
8+
<CodeAnalysisRuleSet>..\WhatIsHeDoing.ruleset</CodeAnalysisRuleSet>
9+
</PropertyGroup>
1010

11-
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
12-
<DebugType>full</DebugType>
13-
<DebugSymbols>true</DebugSymbols>
14-
</PropertyGroup>
11+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
12+
<DebugType>full</DebugType>
13+
<DebugSymbols>true</DebugSymbols>
14+
</PropertyGroup>
1515

16-
<ItemGroup>
17-
<PackageReference Include="Microsoft.CodeAnalysis.Analyzers" Version="3.3.1" />
18-
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.8.0" />
19-
<PackageReference Include="Newtonsoft.Json" Version="12.0.3" />
20-
<PackageReference Include="StyleCop.Analyzers" Version="1.1.118" />
21-
<PackageReference Include="xunit" Version="2.4.1" />
22-
<PackageReference Include="xunit.analyzers" Version="0.10.0" />
23-
<PackageReference Include="xunit.runner.console" Version="2.4.1" />
24-
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.3" />
25-
</ItemGroup>
16+
<ItemGroup>
17+
<PackageReference Include="Microsoft.CodeAnalysis.Analyzers" Version="3.3.2" />
18+
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.9.4" />
19+
<PackageReference Include="Newtonsoft.Json" Version="13.0.1" />
20+
<PackageReference Include="StyleCop.Analyzers" Version="1.1.118" />
21+
<PackageReference Include="xunit" Version="2.4.1" />
22+
<PackageReference Include="xunit.analyzers" Version="0.10.0" />
23+
<PackageReference Include="xunit.runner.console" Version="2.4.1" />
24+
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.3" />
25+
</ItemGroup>
2626

27-
<ItemGroup>
28-
<ProjectReference Include="..\WhatIsHeDoing.DomainModels\WhatIsHeDoing.DomainModels.csproj" />
29-
</ItemGroup>
27+
<ItemGroup>
28+
<ProjectReference Include="..\WhatIsHeDoing.DomainModels\WhatIsHeDoing.DomainModels.csproj" />
29+
</ItemGroup>
3030
</Project>
Lines changed: 33 additions & 33 deletions
Original file line numberDiff line numberDiff line change
@@ -1,38 +1,38 @@
11
<Project Sdk="Microsoft.NET.Sdk">
2-
<PropertyGroup>
3-
<TargetFrameworks>netcoreapp3.1</TargetFrameworks>
4-
<PackageId>WhatIsHeDoing.DomainModels </PackageId>
5-
<PackageVersion>4.0.0</PackageVersion>
6-
<Authors>WhatIsHeDoing</Authors>
7-
<Description>A library of domain models for .NET.</Description>
8-
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>
9-
<PackageReleaseNotes>Upgrading to .NET Core 2.2 only and upgrading several dependencies</PackageReleaseNotes>
10-
<Copyright></Copyright>
11-
<PackageTags>domain models</PackageTags>
12-
<PackageLicenseExpression>Unlicense</PackageLicenseExpression>
13-
<PackageProjectUrl>https://github.com/WhatIsHeDoing/WhatIsHeDoing.DomainModels</PackageProjectUrl>
14-
<Version>4.0.0</Version>
15-
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
16-
<Company />
17-
<RepositoryUrl>https://github.com/WhatIsHeDoing/WhatIsHeDoing.DomainModels</RepositoryUrl>
18-
</PropertyGroup>
2+
<PropertyGroup>
3+
<TargetFrameworks>netcoreapp3.1</TargetFrameworks>
4+
<PackageId>WhatIsHeDoing.DomainModels </PackageId>
5+
<PackageVersion>4.1.0</PackageVersion>
6+
<Authors>WhatIsHeDoing</Authors>
7+
<Description>A library of domain models for .NET.</Description>
8+
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>
9+
<PackageReleaseNotes>Upgrading several dependencies</PackageReleaseNotes>
10+
<Copyright></Copyright>
11+
<PackageTags>domain models</PackageTags>
12+
<PackageLicenseExpression>Unlicense</PackageLicenseExpression>
13+
<PackageProjectUrl>https://github.com/WhatIsHeDoing/WhatIsHeDoing.DomainModels</PackageProjectUrl>
14+
<Version>4.1.0</Version>
15+
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
16+
<Company />
17+
<RepositoryUrl>https://github.com/WhatIsHeDoing/WhatIsHeDoing.DomainModels</RepositoryUrl>
18+
</PropertyGroup>
1919

20-
<PropertyGroup>
21-
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
22-
<WarningsAsErrors />
23-
<CodeAnalysisRuleSet>..\WhatIsHeDoing.ruleset</CodeAnalysisRuleSet>
24-
</PropertyGroup>
20+
<PropertyGroup>
21+
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
22+
<WarningsAsErrors />
23+
<CodeAnalysisRuleSet>..\WhatIsHeDoing.ruleset</CodeAnalysisRuleSet>
24+
</PropertyGroup>
2525

26-
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Debug|AnyCPU'">
27-
<DebugType>full</DebugType>
28-
<DebugSymbols>true</DebugSymbols>
29-
</PropertyGroup>
26+
<PropertyGroup Condition="'$(Configuration)|$(TargetFramework)|$(Platform)'=='Debug|AnyCPU'">
27+
<DebugType>full</DebugType>
28+
<DebugSymbols>true</DebugSymbols>
29+
</PropertyGroup>
3030

31-
<ItemGroup>
32-
<PackageReference Include="Microsoft.CodeAnalysis.Analyzers" Version="2.9.4" />
33-
<PackageReference Include="Newtonsoft.Json" Version="12.0.3" />
34-
<PackageReference Include="RoslynSecurityGuard" Version="2.3.0" />
35-
<PackageReference Include="StyleCop.Analyzers" Version="1.0.2" />
36-
<PackageReference Include="WhatIsHeDoing.Core" Version="2.0.0" />
37-
</ItemGroup>
31+
<ItemGroup>
32+
<PackageReference Include="Microsoft.CodeAnalysis.Analyzers" Version="3.3.2" />
33+
<PackageReference Include="Newtonsoft.Json" Version="13.0.1" />
34+
<PackageReference Include="RoslynSecurityGuard" Version="2.3.0" />
35+
<PackageReference Include="StyleCop.Analyzers" Version="1.1.118" />
36+
<PackageReference Include="WhatIsHeDoing.Core" Version="3.0.0" />
37+
</ItemGroup>
3838
</Project>

0 commit comments

Comments
 (0)