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

added options to enable etd, added fedexdocumentupload provider #42

Merged
merged 3 commits into from
Nov 7, 2023
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
17 changes: 16 additions & 1 deletion EasyKeys.Shipping.sln
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,9 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "data", "data", "{2A75488A-5
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Minimal.Apis", "src\Minimal.Apis\Minimal.Apis.csproj", "{9009798A-AE3E-47E9-8200-74CFEB7381B6}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "EasyKeys.Shipping.FuncTest", "test\EasyKeys.Shipping.FuncTest\EasyKeys.Shipping.FuncTest.csproj", "{48385BA3-B5AE-47E6-9C41-189EE6334D1E}"
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "EasyKeys.Shipping.FuncTest", "test\EasyKeys.Shipping.FuncTest\EasyKeys.Shipping.FuncTest.csproj", "{48385BA3-B5AE-47E6-9C41-189EE6334D1E}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "EasyKeys.Shipping.FedEx.UploadDocument", "src\EasyKeys.Shipping.FedEx.UploadDocument\EasyKeys.Shipping.FedEx.UploadDocument.csproj", "{CCFE77D6-0A82-4EC9-AB2F-6FCD885FC489}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Expand Down Expand Up @@ -330,6 +332,18 @@ Global
{48385BA3-B5AE-47E6-9C41-189EE6334D1E}.Release|x64.Build.0 = Release|Any CPU
{48385BA3-B5AE-47E6-9C41-189EE6334D1E}.Release|x86.ActiveCfg = Release|Any CPU
{48385BA3-B5AE-47E6-9C41-189EE6334D1E}.Release|x86.Build.0 = Release|Any CPU
{CCFE77D6-0A82-4EC9-AB2F-6FCD885FC489}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{CCFE77D6-0A82-4EC9-AB2F-6FCD885FC489}.Debug|Any CPU.Build.0 = Debug|Any CPU
{CCFE77D6-0A82-4EC9-AB2F-6FCD885FC489}.Debug|x64.ActiveCfg = Debug|Any CPU
{CCFE77D6-0A82-4EC9-AB2F-6FCD885FC489}.Debug|x64.Build.0 = Debug|Any CPU
{CCFE77D6-0A82-4EC9-AB2F-6FCD885FC489}.Debug|x86.ActiveCfg = Debug|Any CPU
{CCFE77D6-0A82-4EC9-AB2F-6FCD885FC489}.Debug|x86.Build.0 = Debug|Any CPU
{CCFE77D6-0A82-4EC9-AB2F-6FCD885FC489}.Release|Any CPU.ActiveCfg = Release|Any CPU
{CCFE77D6-0A82-4EC9-AB2F-6FCD885FC489}.Release|Any CPU.Build.0 = Release|Any CPU
{CCFE77D6-0A82-4EC9-AB2F-6FCD885FC489}.Release|x64.ActiveCfg = Release|Any CPU
{CCFE77D6-0A82-4EC9-AB2F-6FCD885FC489}.Release|x64.Build.0 = Release|Any CPU
{CCFE77D6-0A82-4EC9-AB2F-6FCD885FC489}.Release|x86.ActiveCfg = Release|Any CPU
{CCFE77D6-0A82-4EC9-AB2F-6FCD885FC489}.Release|x86.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
Expand Down Expand Up @@ -359,6 +373,7 @@ Global
{2A75488A-57B5-4CB0-B931-6327BA96B445} = {BCBBDD1A-FF30-41E8-B7C1-9BB2A441FF83}
{9009798A-AE3E-47E9-8200-74CFEB7381B6} = {BCBBDD1A-FF30-41E8-B7C1-9BB2A441FF83}
{48385BA3-B5AE-47E6-9C41-189EE6334D1E} = {3F55FE37-B8A2-4DDA-818B-5DBBAA18571E}
{CCFE77D6-0A82-4EC9-AB2F-6FCD885FC489} = {1018F8BE-B2F4-4A54-82F4-72D787E40A7D}
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {0FBE81B8-162F-4342-BABD-0FFFD0C99331}
Expand Down
2 changes: 1 addition & 1 deletion GitVersion.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
mode: Mainline
next-version: 3.10.0
next-version: 3.11.0
branches:
feature:
tag: preview
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
{
"ExtendedData": {
"inputs": [
"../../wsdls/UploadDocumentService_v19.wsdl"
],
"collectionTypes": [
"System.Array",
"System.Collections.Generic.Dictionary`2"
],
"namespaceMappings": [
"*, UploadDocumentService_v19"
],
"targetFramework": "net7.0",
"typeReuseMode": "All"
}
}
Loading
Loading