Skip to content

Commit 8d13901

Browse files
committed
Update 1.0.1
* Corrected an issue with a CS0122 error on the Error class.
1 parent e39023c commit 8d13901

4 files changed

+7
-2
lines changed

Error.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
namespace Utility.BaseClasses
44
{
5-
class Error
5+
public class Error
66
{
77
public HttpStatusCode Status { get; set; }
88
public string Message { get; set; }

Release Notes.md

+3
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,8 @@ The Release Notes for Utility.BaseClasses contains information about when change
44

55
***
66

7+
**Update 1.0.1 - 03/06/2023**
8+
* Corrected an issue with a CS0122 error on the Error class.
9+
710
**Update 1.0 - 03/02/2023**
811
* Initial Release

Utility.BaseClasses.csproj

+2
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,8 @@
1515
<RepositoryType>git</RepositoryType>
1616
<Title>Utility.BaseClasses</Title>
1717
<PackageReadmeFile>README.md</PackageReadmeFile>
18+
<Version>1.0.1</Version>
19+
1820
</PropertyGroup>
1921
<ItemGroup>
2022
<None Include="Release Notes.md">

Utility.BaseClasses.sln

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ Microsoft Visual Studio Solution File, Format Version 12.00
33
# Visual Studio Version 17
44
VisualStudioVersion = 17.4.33213.308
55
MinimumVisualStudioVersion = 10.0.40219.1
6-
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Utility.BaseClasses", "Utility.BaseClasses.csproj", "{9F4AC98F-8509-40FE-881E-638298F681CE}"
6+
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Utility.BaseClasses", "Utility.BaseClasses.csproj", "{9F4AC98F-8509-40FE-881E-638298F681CE}"
77
EndProject
88
Global
99
GlobalSection(SolutionConfigurationPlatforms) = preSolution

0 commit comments

Comments
 (0)