-
Notifications
You must be signed in to change notification settings - Fork 0
Upgrade to net10 #246
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Upgrade to net10 #246
Changes from all commits
Commits
Show all changes
9 commits
Select commit
Hold shift + click to select a range
971e534
done
VL-CZ 1f417a9
done
VL-CZ 5c11a75
Merge branch 'master' into feature/upgrade-to-net10
VL-CZ 85995e1
fixes
VL-CZ e04451b
upgrade packages
VL-CZ 0254e6f
done
VL-CZ 8b5365e
done
VL-CZ c0a4598
format
VL-CZ d95c5b3
Update src/RefDocGen/TemplateProcessors/Shared/RazorTemplateProcessor.cs
VL-CZ File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,39 @@ | ||
| using Microsoft.Extensions.Logging; | ||
|
|
||
| namespace RefDocGen.Tools.Logging; | ||
|
|
||
| /// <summary> | ||
| /// Source-generated logging methods used across the application. | ||
| /// </summary> | ||
| internal static partial class RefDocGenLogMessages | ||
| { | ||
| [LoggerMessage(Level = LogLevel.Information, Message = "Assembly {Name} loaded")] | ||
| internal static partial void LogAssemblyLoaded(ILogger logger, string name); | ||
|
|
||
| [LoggerMessage(Level = LogLevel.Information, Message = "Assembly {Name} excluded")] | ||
| internal static partial void LogAssemblyExcluded(ILogger logger, string name); | ||
|
|
||
| [LoggerMessage(Level = LogLevel.Information, Message = "XML documentation file {Name} loaded")] | ||
| internal static partial void LogXmlDocFileLoaded(ILogger logger, string name); | ||
|
|
||
| [LoggerMessage(Level = LogLevel.Information, Message = "Configuration saved into {File} file")] | ||
| internal static partial void LogConfigurationSaved(ILogger logger, string file); | ||
|
|
||
| [LoggerMessage(Level = LogLevel.Information, Message = "Generating documentation in {Folder} folder")] | ||
| internal static partial void LogGeneratingDocumentation(ILogger logger, string folder); | ||
|
|
||
| [LoggerMessage(Level = LogLevel.Information, Message = "A directory containing static template data copied to {Directory}")] | ||
| internal static partial void LogStaticTemplateDataCopied(ILogger logger, string directory); | ||
|
|
||
| [LoggerMessage(Level = LogLevel.Information, Message = "No directory containing static template data found at path {Directory}")] | ||
| internal static partial void LogNoStaticTemplateDataFound(ILogger logger, string directory); | ||
|
|
||
| [LoggerMessage(Level = LogLevel.Information, Message = "Static page {Directory}/{Page} found")] | ||
| internal static partial void LogStaticPageFound(ILogger logger, string directory, string page); | ||
|
|
||
| [LoggerMessage(Level = LogLevel.Information, Message = "Page {Name} created")] | ||
| internal static partial void LogPageCreated(ILogger logger, string name); | ||
|
|
||
| [LoggerMessage(Level = LogLevel.Information, Message = "Static file {FilePath} copied to {OutputPath}")] | ||
| internal static partial void LogStaticFileCopied(ILogger logger, string filePath, string outputPath); | ||
| } |
2 changes: 1 addition & 1 deletion
2
tests/RefDocGen.ExampleFSharpLibrary/RefDocGen.ExampleFSharpLibrary.fsproj
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.