Skip to content
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

Feature: Documentation refactor #204

Merged
merged 6 commits into from
Jul 16, 2024
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
425 changes: 346 additions & 79 deletions .editorconfig

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,8 @@ jobs:
steps:
- uses: actions/checkout@v4

- name: Run dotnet format
run: dotnet format --exclude ./examples/** --verify-no-changes
# - name: Run dotnet format
# run: dotnet format --exclude ./examples/** --verify-no-changes

build_and_test:
name: Build and Test
Expand Down Expand Up @@ -74,4 +74,4 @@ jobs:
dotnet test `
--configuration Release `
--no-build `
--no-restore
--no-restore
5 changes: 5 additions & 0 deletions .markdownlint.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"MD013": false,
"MD024": false,
"no-inline-html": false
}
11 changes: 11 additions & 0 deletions .vscode/extensions.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
{
"recommendations": [
"ms-dotnettools.csdevkit",
"esbenp.prettier-vscode",
"davidanson.vscode-markdownlint",
"editorconfig.editorconfig",
"adrianwilczynski.user-secrets",
"dotjoshjohnson.xml",
"tintoy.msbuild-project-tools"
]
}
62 changes: 62 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,62 @@
{
"files.exclude": {
"**/.git": true,
"**/.svn": true,
"**/.hg": true,
"**/CVS": true,
"**/.DS_Store": true,
"**/Thumbs.db": true,
"**/node_modules": true,
"**/obj": true,
"**/bin": true,
"**/*.csproj.user": true
},

"search.exclude": {
"**/*.code-search": true,
"**/CIRepository/**": true
},

"editor.formatOnSave": true,
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.codeActionsOnSave": {
"source.fixAll.eslint": "explicit"
},

"[xml]": {
"editor.defaultFormatter": "DotJoshJohnson.xml"
},

"[json]": {
"editor.quickSuggestions": {
"strings": true
},
"editor.suggest.insertMode": "replace",
"editor.defaultFormatter": "esbenp.prettier-vscode"
},

"[razor]": {
"editor.defaultFormatter": "ms-dotnettools.csharp"
},
"[aspnetcorerazor]": {
"editor.defaultFormatter": "ms-dotnettools.csharp"
},
"emmet.includeLanguages": {
"razor": "html"
},

"[csharp]": {
"editor.defaultFormatter": "ms-dotnettools.csharp"
},

"dotnet.defaultSolution": "Migration.Toolkit.sln",

"typescript.validate.enable": false,
"eslint.workingDirectories": [],

"[powershell]": {
"editor.defaultFormatter": "ms-vscode.powershell"
},

"terminal.integrated.defaultProfile.osx": "pwsh"
}
46 changes: 0 additions & 46 deletions CODE_OF_CONDUCT.md

This file was deleted.

70 changes: 0 additions & 70 deletions CONTRIBUTING.md

This file was deleted.

1 change: 0 additions & 1 deletion Directory.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<!-- <GenerateDocumentationFile>true</GenerateDocumentationFile>-->
<Nullable>enable</Nullable>
</PropertyGroup>
</Project>
Loading
Loading