Skip to content

Commit 9a930a2

Browse files
committed
Fix versioning
1 parent 0a7e0d9 commit 9a930a2

6 files changed

+7
-7
lines changed

Source/Directory.Build.props

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<Nullable>enable</Nullable>
55
<AnnotatedReferenceAssemblyVersion>6.0.0</AnnotatedReferenceAssemblyVersion>
66
<GenerateDocumentationFile>true</GenerateDocumentationFile>
7-
<Version>1.0.3</Version>
7+
<Version>1.0.4</Version>
88
<DefineConstants Condition="'$(IsCI)' == 'true'">$(DefineConstants);CI</DefineConstants>
99
</PropertyGroup>
1010

Source/RuntimeNullables.Fody.Tests/VerifyILTests.InjectedThrowHelpers.Debug.Core3_1.verified.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
extends [System.Runtime]System.Object
33
{
44
string) = ( 01 00 15 52 75 6E 74 69 6D 65 4E 75 6C 6C 61 62 // ...RuntimeNullab
5-
6C 65 73 2E 46 6F 64 79 05 31 2E 30 2E 32 00 00 ) // les.Fody.1.0.2..
5+
6C 65 73 2E 46 6F 64 79 05 31 2E 30 2E 34 00 00 ) // les.Fody.1.0.4..
66
.method assembly hidebysig static void
77
ThrowArgumentNull(string paramName) cil managed
88
{

Source/RuntimeNullables.Fody.Tests/VerifyILTests.InjectedThrowHelpers.Debug.DotNet7_0.verified.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
extends [System.Runtime]System.Object
33
{
44
string) = ( 01 00 15 52 75 6E 74 69 6D 65 4E 75 6C 6C 61 62 // ...RuntimeNullab
5-
6C 65 73 2E 46 6F 64 79 05 31 2E 30 2E 32 00 00 ) // les.Fody.1.0.2..
5+
6C 65 73 2E 46 6F 64 79 05 31 2E 30 2E 34 00 00 ) // les.Fody.1.0.4..
66
.method assembly hidebysig static void
77
ThrowArgumentNull(string paramName) cil managed
88
{

Source/RuntimeNullables.Fody.Tests/VerifyILTests.InjectedThrowHelpers.Release.Core3_1.verified.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
extends [System.Runtime]System.Object
33
{
44
string) = ( 01 00 15 52 75 6E 74 69 6D 65 4E 75 6C 6C 61 62 // ...RuntimeNullab
5-
6C 65 73 2E 46 6F 64 79 05 31 2E 30 2E 32 00 00 ) // les.Fody.1.0.2..
5+
6C 65 73 2E 46 6F 64 79 05 31 2E 30 2E 34 00 00 ) // les.Fody.1.0.4..
66
.method assembly hidebysig static void
77
ThrowArgumentNull(string paramName) cil managed
88
{

Source/RuntimeNullables.Fody.Tests/VerifyILTests.InjectedThrowHelpers.Release.DotNet7_0.verified.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
extends [System.Runtime]System.Object
33
{
44
string) = ( 01 00 15 52 75 6E 74 69 6D 65 4E 75 6C 6C 61 62 // ...RuntimeNullab
5-
6C 65 73 2E 46 6F 64 79 05 31 2E 30 2E 32 00 00 ) // les.Fody.1.0.2..
5+
6C 65 73 2E 46 6F 64 79 05 31 2E 30 2E 34 00 00 ) // les.Fody.1.0.4..
66
.method assembly hidebysig static void
77
ThrowArgumentNull(string paramName) cil managed
88
{

Source/RuntimeNullables.Fody/ModuleWeaver.ThrowHelpers.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -119,8 +119,8 @@ TypeDefinition InjectThrowHelperType()
119119

120120
void AddGeneratedCodeAttribute(ICustomAttributeProvider item)
121121
{
122-
// [System.CodeDom.Compiler.GeneratedCodeAttribute("RuntimeNullables.Fody", "1.0.1")]
123-
const string dataString = "01 00 15 52 75 6e 74 69 6d 65 4e 75 6c 6c 61 62 6c 65 73 2e 46 6f 64 79 05 31 2e 30 2e 32 00 00";
122+
// [System.CodeDom.Compiler.GeneratedCodeAttribute("RuntimeNullables.Fody", "1.0.4")]
123+
const string dataString = "01 00 15 52 75 6e 74 69 6d 65 4e 75 6c 6c 61 62 6c 65 73 2e 46 6f 64 79 05 31 2e 30 2e 34 00 00";
124124
byte[] data = dataString.Split(' ').Select(b => byte.Parse(b, NumberStyles.HexNumber, null)).ToArray();
125125

126126
var attribute = new CustomAttribute(bclReferences.GeneratedCodeAttributeConstructor, data);

0 commit comments

Comments
 (0)