From e596a523a7de59bcf79e6bc708ed77887b3a9281 Mon Sep 17 00:00:00 2001 From: Victor Irzak Date: Wed, 17 Jan 2024 15:49:36 -0500 Subject: [PATCH] Version 1.3 --- Directory.Packages.props | 4 ++-- Zomp.SyncMethodGenerator.sln | 1 + tests/Generator.Tests/ArgumentTests.cs | 1 - tests/Generator.Tests/ConditionalExtensionTests.cs | 1 - tests/Generator.Tests/DelegateTests.cs | 1 - tests/Generator.Tests/GenericMathTests.cs | 1 - tests/Generator.Tests/IntegrationTesting.cs | 1 - tests/Generator.Tests/InterpolatedStringTests.cs | 1 - tests/Generator.Tests/MemoryTests.cs | 1 - tests/Generator.Tests/NullabilityTests.cs | 1 - tests/Generator.Tests/SpecialMethodsTests.cs | 1 - tests/Generator.Tests/SyncOnlyTests.cs | 1 - tests/Generator.Tests/SystemAsyncExtensionsTests.cs | 1 - tests/Generator.Tests/TypeTests.cs | 1 - tests/Generator.Tests/UnitTests.cs | 1 - version.json | 2 +- 16 files changed, 4 insertions(+), 16 deletions(-) diff --git a/Directory.Packages.props b/Directory.Packages.props index be9eada..79a6cbc 100644 --- a/Directory.Packages.props +++ b/Directory.Packages.props @@ -13,8 +13,8 @@ - - + + diff --git a/Zomp.SyncMethodGenerator.sln b/Zomp.SyncMethodGenerator.sln index a045545..c47148b 100644 --- a/Zomp.SyncMethodGenerator.sln +++ b/Zomp.SyncMethodGenerator.sln @@ -23,6 +23,7 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Directory.Packages.props = Directory.Packages.props NuGet.Config = NuGet.Config package.json = package.json + version.json = version.json EndProjectSection EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Generator.Tests", "tests\Generator.Tests\Generator.Tests.csproj", "{DEB7DF97-43ED-49D6-8C05-6B2681208610}" diff --git a/tests/Generator.Tests/ArgumentTests.cs b/tests/Generator.Tests/ArgumentTests.cs index 3b62cca..55ad5ff 100644 --- a/tests/Generator.Tests/ArgumentTests.cs +++ b/tests/Generator.Tests/ArgumentTests.cs @@ -1,6 +1,5 @@ namespace Generator.Tests; -[UsesVerify] public class ArgumentTests { [Fact] diff --git a/tests/Generator.Tests/ConditionalExtensionTests.cs b/tests/Generator.Tests/ConditionalExtensionTests.cs index ae69e50..d733932 100644 --- a/tests/Generator.Tests/ConditionalExtensionTests.cs +++ b/tests/Generator.Tests/ConditionalExtensionTests.cs @@ -1,6 +1,5 @@ namespace Generator.Tests; -[UsesVerify] public class ConditionalExtensionTests { [Fact] diff --git a/tests/Generator.Tests/DelegateTests.cs b/tests/Generator.Tests/DelegateTests.cs index f109532..0e5191b 100644 --- a/tests/Generator.Tests/DelegateTests.cs +++ b/tests/Generator.Tests/DelegateTests.cs @@ -1,6 +1,5 @@ namespace Generator.Tests; -[UsesVerify] public class DelegateTests { [Theory] diff --git a/tests/Generator.Tests/GenericMathTests.cs b/tests/Generator.Tests/GenericMathTests.cs index 6aae0d0..c13a258 100644 --- a/tests/Generator.Tests/GenericMathTests.cs +++ b/tests/Generator.Tests/GenericMathTests.cs @@ -1,6 +1,5 @@ namespace Generator.Tests; -[UsesVerify] public class GenericMathTests { [Fact] diff --git a/tests/Generator.Tests/IntegrationTesting.cs b/tests/Generator.Tests/IntegrationTesting.cs index 19cddeb..ed1cebd 100644 --- a/tests/Generator.Tests/IntegrationTesting.cs +++ b/tests/Generator.Tests/IntegrationTesting.cs @@ -1,6 +1,5 @@ namespace Generator.Tests; -[UsesVerify] public class IntegrationTesting { #if NETCOREAPP1_0_OR_GREATER diff --git a/tests/Generator.Tests/InterpolatedStringTests.cs b/tests/Generator.Tests/InterpolatedStringTests.cs index 60e43e5..1eaa070 100644 --- a/tests/Generator.Tests/InterpolatedStringTests.cs +++ b/tests/Generator.Tests/InterpolatedStringTests.cs @@ -1,6 +1,5 @@ namespace Generator.Tests; -[UsesVerify] public class InterpolatedStringTests { [Theory] diff --git a/tests/Generator.Tests/MemoryTests.cs b/tests/Generator.Tests/MemoryTests.cs index 8cc1f5e..a7455d3 100644 --- a/tests/Generator.Tests/MemoryTests.cs +++ b/tests/Generator.Tests/MemoryTests.cs @@ -1,6 +1,5 @@ namespace Generator.Tests; -[UsesVerify] public class MemoryTests { #if NETCOREAPP1_0_OR_GREATER diff --git a/tests/Generator.Tests/NullabilityTests.cs b/tests/Generator.Tests/NullabilityTests.cs index ec50905..5ca2bcf 100644 --- a/tests/Generator.Tests/NullabilityTests.cs +++ b/tests/Generator.Tests/NullabilityTests.cs @@ -1,6 +1,5 @@ namespace Generator.Tests; -[UsesVerify] public class NullabilityTests { [Fact(Skip = "Execute when resolved: https://github.com/dotnet/roslyn/issues/49555")] diff --git a/tests/Generator.Tests/SpecialMethodsTests.cs b/tests/Generator.Tests/SpecialMethodsTests.cs index 295ef37..3784533 100644 --- a/tests/Generator.Tests/SpecialMethodsTests.cs +++ b/tests/Generator.Tests/SpecialMethodsTests.cs @@ -1,6 +1,5 @@ namespace Generator.Tests; -[UsesVerify] public class SpecialMethodsTests { [Theory] diff --git a/tests/Generator.Tests/SyncOnlyTests.cs b/tests/Generator.Tests/SyncOnlyTests.cs index b644d91..597b3af 100644 --- a/tests/Generator.Tests/SyncOnlyTests.cs +++ b/tests/Generator.Tests/SyncOnlyTests.cs @@ -1,6 +1,5 @@ namespace Generator.Tests; -[UsesVerify] public class SyncOnlyTests { [Theory] diff --git a/tests/Generator.Tests/SystemAsyncExtensionsTests.cs b/tests/Generator.Tests/SystemAsyncExtensionsTests.cs index 200fd46..bb43d6c 100644 --- a/tests/Generator.Tests/SystemAsyncExtensionsTests.cs +++ b/tests/Generator.Tests/SystemAsyncExtensionsTests.cs @@ -1,6 +1,5 @@ namespace Generator.Tests; -[UsesVerify] public class SystemAsyncExtensionsTests { [Fact] diff --git a/tests/Generator.Tests/TypeTests.cs b/tests/Generator.Tests/TypeTests.cs index 8cd4ceb..f4555e1 100644 --- a/tests/Generator.Tests/TypeTests.cs +++ b/tests/Generator.Tests/TypeTests.cs @@ -1,6 +1,5 @@ namespace Generator.Tests; -[UsesVerify] public class TypeTests { [Fact] diff --git a/tests/Generator.Tests/UnitTests.cs b/tests/Generator.Tests/UnitTests.cs index 8491f4c..30f2317 100644 --- a/tests/Generator.Tests/UnitTests.cs +++ b/tests/Generator.Tests/UnitTests.cs @@ -1,6 +1,5 @@ namespace Generator.Tests; -[UsesVerify] public class UnitTests { [Fact] diff --git a/version.json b/version.json index 85c498f..5a84d6b 100644 --- a/version.json +++ b/version.json @@ -1,6 +1,6 @@ { "$schema": "https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/master/src/NerdBank.GitVersioning/version.schema.json", - "version": "1.2", + "version": "1.3", "assemblyVersion": { "precision": "revision" },