Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 8 additions & 2 deletions LICENSE.TXT → LICENSE.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,11 @@
MIT License
# MIT License

## Copyright

Copyright (c) 2025 Mark Derman

## Permission Notice

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
Expand All @@ -12,10 +16,12 @@ furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

## Disclaimer

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
SOFTWARE.
4 changes: 2 additions & 2 deletions Logging/Core/ILoggerWrapper.cs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// Portions of this file are derived from the .NET runtime project.
// Copyright (c) .NET Foundation and Contributors
// Licensed under the MIT license.
// See the LICENSE.TXT file in this repository for full license information.
// See the LICENSE.md file in this repository for full license information.

using Microsoft.Extensions.Logging;

Expand Down Expand Up @@ -472,4 +472,4 @@ public interface ILoggerWrapper : ILogger
params object?[] args);

}
}
}
4 changes: 2 additions & 2 deletions Logging/Core/LoggerWrapper.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// Portions of this file are derived from the .NET runtime project.
// Copyright (c) .NET Foundation and Contributors
// Licensed under the MIT license. See the LICENSE.TXT file in this repository for full license information.
// Licensed under the MIT license. See the LICENSE.md file in this repository for full license information.

using Microsoft.Extensions.Logging;

Expand Down Expand Up @@ -264,4 +264,4 @@ public void LogCritical(string? message, params object?[] args)


}
}
}
2 changes: 1 addition & 1 deletion Odin.sln
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Shared", "Shared", "{4F52FD
.github\workflows\publish.yml = .github\workflows\publish.yml
Directory.Build.props = Directory.Build.props
.github\workflows\pr-validation.yml = .github\workflows\pr-validation.yml
LICENSE.TXT = LICENSE.TXT
LICENSE.md = LICENSE.md
README.md = README.md
GitVersion.yml = GitVersion.yml
.gitignore = .gitignore
Expand Down
Loading