-
Notifications
You must be signed in to change notification settings - Fork 70
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #187 from mercadopago/enhancement/increase-dotnet-…
…version Enhancement: require .NET Framework 6.0 as minimum version
- Loading branch information
Showing
19 changed files
with
649 additions
and
636 deletions.
There are no files selected for viewing
This file contains 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 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 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 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,17 @@ | ||
repos: | ||
# Websec hook is MANDATORY, DO NOT comment it. | ||
- repo: https://github.com/melisource/fury_websec-git-hooks | ||
rev: v1.1.0 | ||
hooks: | ||
- id: pre_commit_hook | ||
stages: [commit] | ||
- id: post_commit_hook | ||
stages: [post-commit] | ||
|
||
# Datasec hook is MANDATORY, DO NOT comment it. | ||
- repo: https://github.com/melisource/fury_datasec-git-hooks | ||
rev: 1.0.3 | ||
hooks: | ||
- id: pre_commit_hook | ||
stages: [commit] | ||
verbose: true |
This file contains 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,7 @@ | ||
# Releases | ||
|
||
## VERSION 2.4.0 | ||
- Require .NET Framework 6.0 as minimum version. | ||
- Avoid rethrowing exception that changes stack trace information. | ||
- Add pre-commit. | ||
- Add CHANGELOG file. |
This file contains 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 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 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 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 |
---|---|---|
@@ -1,41 +1,41 @@ | ||
{ | ||
"metadata": [ | ||
"metadata": [ | ||
{ | ||
"src": [ | ||
{ | ||
"src": [ | ||
{ | ||
"files": [ "MercadoPago/MercadoPago.csproj" ], | ||
"exclude": [ "**/bin/**", "**/obj/**" ], | ||
"src": "src" | ||
} | ||
], | ||
"dest": "obj/sdk", | ||
"properties": { | ||
"TargetFramework": "netcoreapp3.1" | ||
} | ||
"files": ["MercadoPago/MercadoPago.csproj"], | ||
"exclude": ["**/bin/**", "**/obj/**"], | ||
"src": "src" | ||
} | ||
], | ||
"build": { | ||
"content": [ | ||
{ | ||
"files": [ "**/*.yml" ], | ||
"src": "obj/sdk", | ||
"dest": "sdk" | ||
}, | ||
{ | ||
"files": [ "*.md", "toc.yml" ] | ||
}, | ||
{ | ||
"files": [ "*.md" ], | ||
"src": ".github/ISSUE_TEMPLATE" | ||
} | ||
], | ||
"globalMetadata": { | ||
"_appTitle": "MercadoPago official .NET SDK", | ||
"_enableSearch": true | ||
}, | ||
"template": ["statictoc"], | ||
"markdownEngineName": "markdig", | ||
"dest": "docs", | ||
"xrefService": [ "https://xref.docs.microsoft.com/query?uid={uid}" ] | ||
], | ||
"dest": "obj/sdk", | ||
"properties": { | ||
"TargetFramework": "net6.0" | ||
} | ||
} | ||
} | ||
], | ||
"build": { | ||
"content": [ | ||
{ | ||
"files": ["**/*.yml"], | ||
"src": "obj/sdk", | ||
"dest": "sdk" | ||
}, | ||
{ | ||
"files": ["*.md", "toc.yml"] | ||
}, | ||
{ | ||
"files": ["*.md"], | ||
"src": ".github/ISSUE_TEMPLATE" | ||
} | ||
], | ||
"globalMetadata": { | ||
"_appTitle": "MercadoPago official .NET SDK", | ||
"_enableSearch": true | ||
}, | ||
"template": ["statictoc"], | ||
"markdownEngineName": "markdig", | ||
"dest": "docs", | ||
"xrefService": ["https://xref.docs.microsoft.com/query?uid={uid}"] | ||
} | ||
} |
Oops, something went wrong.