From 4f31812b3491c2bc61b983e8a18bb6e9f7858100 Mon Sep 17 00:00:00 2001 From: Bradley-Augstein_finastra Date: Tue, 2 Jul 2024 13:21:53 +0100 Subject: [PATCH 01/12] Test GitVersion behviour --- .github/workflows/msbuild.yml | 2 +- GitAction/Program.cs | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/msbuild.yml b/.github/workflows/msbuild.yml index 5b54db7..e65a12d 100644 --- a/.github/workflows/msbuild.yml +++ b/.github/workflows/msbuild.yml @@ -3,7 +3,7 @@ name: MSBuild on: # Triggers the workflow on push or pull request events but only for the main branch push: - branches: [ main ] + branches: [ main, release ] pull_request: branches: [ main ] diff --git a/GitAction/Program.cs b/GitAction/Program.cs index dc1fca1..86ea237 100644 --- a/GitAction/Program.cs +++ b/GitAction/Program.cs @@ -13,6 +13,7 @@ static void Main(string[] args) // The code provided will print ‘Hello World’ to the console. // Press Ctrl+F5 (or go to Debug > Start Without Debugging) to run your app. Console.WriteLine("Hello World!"); + Console.ReadKey(); // Go to http://aka.ms/dotnet-get-started-console to continue learning how to build a console app! From 93c2d604b0e97a0a5e36c28901b5369773be0435 Mon Sep 17 00:00:00 2001 From: Bradley-Augstein_finastra Date: Tue, 2 Jul 2024 13:33:59 +0100 Subject: [PATCH 02/12] update checkout and msbuild --- .github/workflows/VStest.yml | 4 ++-- .github/workflows/msbuild.yml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/VStest.yml b/.github/workflows/VStest.yml index 465e848..5ad5f49 100644 --- a/.github/workflows/VStest.yml +++ b/.github/workflows/VStest.yml @@ -21,12 +21,12 @@ jobs: runs-on: windows-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 with: submodules: 'recursive' # Ensure submodules are fetched - name: Add MSBuild to PATH - uses: microsoft/setup-msbuild@v1.0.2 + uses: microsoft/setup-msbuild@v2 - name: Restore NuGet packages working-directory: ${{env.GITHUB_WORKSPACE}} diff --git a/.github/workflows/msbuild.yml b/.github/workflows/msbuild.yml index e65a12d..1dbdbf7 100644 --- a/.github/workflows/msbuild.yml +++ b/.github/workflows/msbuild.yml @@ -21,12 +21,12 @@ jobs: runs-on: windows-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 with: fetch-depth: 0 - name: Add MSBuild to PATH - uses: microsoft/setup-msbuild@v1.0.2 + uses: microsoft/setup-msbuild@v2 - name: Restore NuGet packages working-directory: ${{env.GITHUB_WORKSPACE}} From 3c6596902e33750afb9f78ea6b599dda50693469 Mon Sep 17 00:00:00 2001 From: Bradley-Augstein_finastra Date: Tue, 2 Jul 2024 13:52:31 +0100 Subject: [PATCH 03/12] update checkout and gitversion version --- .github/workflows/VStest.yml | 2 +- .github/workflows/msbuild.yml | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/VStest.yml b/.github/workflows/VStest.yml index 5ad5f49..e4d791f 100644 --- a/.github/workflows/VStest.yml +++ b/.github/workflows/VStest.yml @@ -21,7 +21,7 @@ jobs: runs-on: windows-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 with: submodules: 'recursive' # Ensure submodules are fetched diff --git a/.github/workflows/msbuild.yml b/.github/workflows/msbuild.yml index 1dbdbf7..16d902c 100644 --- a/.github/workflows/msbuild.yml +++ b/.github/workflows/msbuild.yml @@ -21,7 +21,7 @@ jobs: runs-on: windows-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 with: fetch-depth: 0 @@ -39,9 +39,9 @@ jobs: run: msbuild /m /p:Configuration=${{env.BUILD_CONFIGURATION}} ${{env.SOLUTION_FILE_PATH}} - name: Install GitVersion - uses: gittools/actions/gitversion/setup@v0.9.7 + uses: gittools/actions/gitversion/setup@v1.1.1 with: versionSpec: '5.x' - name: Determine Version - uses: gittools/actions/gitversion/execute@v0.9.7 + uses: gittools/actions/gitversion/execute@v1.1.1 From 107ced1321253da9ab769a93b18efb2fd3909cc2 Mon Sep 17 00:00:00 2001 From: Bradley-Augstein_finastra Date: Tue, 2 Jul 2024 14:06:12 +0100 Subject: [PATCH 04/12] Add GitVersion.yml --- GitAction/GitVersion.yml | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 GitAction/GitVersion.yml diff --git a/GitAction/GitVersion.yml b/GitAction/GitVersion.yml new file mode 100644 index 0000000..ebdfba1 --- /dev/null +++ b/GitAction/GitVersion.yml @@ -0,0 +1,6 @@ +assembly-versioning-scheme: MajorMinorPatch +mode: ContinuousDeployment +branches: {} +ignore: + sha: [] +merge-message-formats: {} From d67d9ee9fc2d1382fde89194541e55bc6e4d7803 Mon Sep 17 00:00:00 2001 From: Bradley-Augstein_finastra Date: Tue, 2 Jul 2024 14:49:48 +0100 Subject: [PATCH 05/12] Update of Program.cs to try to trigger GitVersion #123 --- GitAction/Program.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/GitAction/Program.cs b/GitAction/Program.cs index 86ea237..45fb959 100644 --- a/GitAction/Program.cs +++ b/GitAction/Program.cs @@ -14,6 +14,7 @@ static void Main(string[] args) // Press Ctrl+F5 (or go to Debug > Start Without Debugging) to run your app. Console.WriteLine("Hello World!"); + Console.ReadKey(); // Go to http://aka.ms/dotnet-get-started-console to continue learning how to build a console app! From 9629cfc6409aba2e9e6696745fac5070e6caad42 Mon Sep 17 00:00:00 2001 From: Bradley-Augstein_finastra Date: Tue, 2 Jul 2024 14:58:27 +0100 Subject: [PATCH 06/12] +semver: major: Trying to bump major version --- GitAction/gitversion.json | 52 +++++++++++++++++++-------------------- 1 file changed, 26 insertions(+), 26 deletions(-) diff --git a/GitAction/gitversion.json b/GitAction/gitversion.json index 65912b7..3776269 100644 --- a/GitAction/gitversion.json +++ b/GitAction/gitversion.json @@ -2,34 +2,34 @@ "Major": 0, "Minor": 1, "Patch": 0, - "PreReleaseTag": "gitversion.1", - "PreReleaseTagWithDash": "-gitversion.1", - "PreReleaseLabel": "gitversion", - "PreReleaseLabelWithDash": "-gitversion", - "PreReleaseNumber": 1, - "WeightedPreReleaseNumber": 1, - "BuildMetaData": 39, - "BuildMetaDataPadded": "0039", - "FullBuildMetaData": "39.Branch.gitversion.Sha.828ba5fbbde9a4d7bf635cd59005b85d98c8b24a", + "PreReleaseTag": "release.223", + "PreReleaseTagWithDash": "-release.223", + "PreReleaseLabel": "release", + "PreReleaseLabelWithDash": "-release", + "PreReleaseNumber": 223, + "WeightedPreReleaseNumber": 223, + "BuildMetaData": null, + "BuildMetaDataPadded": "", + "FullBuildMetaData": "Branch.release.Sha.107ced1321253da9ab769a93b18efb2fd3909cc2", "MajorMinorPatch": "0.1.0", - "SemVer": "0.1.0-gitversion.1", - "LegacySemVer": "0.1.0-gitversion1", - "LegacySemVerPadded": "0.1.0-gitversion0001", + "SemVer": "0.1.0-release.223", + "LegacySemVer": "0.1.0-release223", + "LegacySemVerPadded": "0.1.0-release0223", "AssemblySemVer": "0.1.0.0", "AssemblySemFileVer": "0.1.0.0", - "FullSemVer": "0.1.0-gitversion.1+39", - "InformationalVersion": "0.1.0-gitversion.1+39.Branch.gitversion.Sha.828ba5fbbde9a4d7bf635cd59005b85d98c8b24a", - "BranchName": "gitversion", - "EscapedBranchName": "gitversion", - "Sha": "828ba5fbbde9a4d7bf635cd59005b85d98c8b24a", - "ShortSha": "828ba5f", - "NuGetVersionV2": "0.1.0-gitversion0001", - "NuGetVersion": "0.1.0-gitversion0001", - "NuGetPreReleaseTagV2": "gitversion0001", - "NuGetPreReleaseTag": "gitversion0001", + "FullSemVer": "0.1.0-release.223", + "InformationalVersion": "0.1.0-release.223+Branch.release.Sha.107ced1321253da9ab769a93b18efb2fd3909cc2", + "BranchName": "release", + "EscapedBranchName": "release", + "Sha": "107ced1321253da9ab769a93b18efb2fd3909cc2", + "ShortSha": "107ced1", + "NuGetVersionV2": "0.1.0-release0223", + "NuGetVersion": "0.1.0-release0223", + "NuGetPreReleaseTagV2": "release0223", + "NuGetPreReleaseTag": "release0223", "VersionSourceSha": "ed58148b4d0d02ea8fd6f7954e5b241d92ee9a61", - "CommitsSinceVersionSource": 39, - "CommitsSinceVersionSourcePadded": "0039", - "UncommittedChanges": 894, - "CommitDate": "2022-03-05" + "CommitsSinceVersionSource": 223, + "CommitsSinceVersionSourcePadded": "0223", + "UncommittedChanges": 248, + "CommitDate": "2024-07-02" } \ No newline at end of file From 55946ed15ed551dfc8ca4d87281f4ad02eb0d47a Mon Sep 17 00:00:00 2001 From: Bradley-Augstein_finastra Date: Tue, 2 Jul 2024 15:10:43 +0100 Subject: [PATCH 07/12] cahnge with tag --- GitAction/Program.cs | 1 - 1 file changed, 1 deletion(-) diff --git a/GitAction/Program.cs b/GitAction/Program.cs index 45fb959..86ea237 100644 --- a/GitAction/Program.cs +++ b/GitAction/Program.cs @@ -14,7 +14,6 @@ static void Main(string[] args) // Press Ctrl+F5 (or go to Debug > Start Without Debugging) to run your app. Console.WriteLine("Hello World!"); - Console.ReadKey(); // Go to http://aka.ms/dotnet-get-started-console to continue learning how to build a console app! From a5c3c96958479a3a00e48e0f43a07fea06250a1b Mon Sep 17 00:00:00 2001 From: Bradley-Augstein_finastra Date: Wed, 3 Jul 2024 21:22:21 +0100 Subject: [PATCH 08/12] change with tag --- GitAction/Program.cs | 1 - 1 file changed, 1 deletion(-) diff --git a/GitAction/Program.cs b/GitAction/Program.cs index 86ea237..dc1fca1 100644 --- a/GitAction/Program.cs +++ b/GitAction/Program.cs @@ -13,7 +13,6 @@ static void Main(string[] args) // The code provided will print ‘Hello World’ to the console. // Press Ctrl+F5 (or go to Debug > Start Without Debugging) to run your app. Console.WriteLine("Hello World!"); - Console.ReadKey(); // Go to http://aka.ms/dotnet-get-started-console to continue learning how to build a console app! From ebce147a9c8e4f7710bc0989161fa07b3a6f234e Mon Sep 17 00:00:00 2001 From: Bradley-Augstein_finastra Date: Thu, 4 Jul 2024 07:39:00 +0100 Subject: [PATCH 09/12] Test auto release --- .github/workflows/AutoRelease.yml | 24 ++++++++++++++++++++++++ CHANGELOG.md | 1 + 2 files changed, 25 insertions(+) create mode 100644 .github/workflows/AutoRelease.yml create mode 100644 CHANGELOG.md diff --git a/.github/workflows/AutoRelease.yml b/.github/workflows/AutoRelease.yml new file mode 100644 index 0000000..1ffd6bc --- /dev/null +++ b/.github/workflows/AutoRelease.yml @@ -0,0 +1,24 @@ +name: AutoRelease + +on: + push: + branches: [ main, release ] + +# A workflow run is made up of one or more jobs that can run sequentially or in parallel +jobs: + # This workflow contains a single job called "build" + release: + # The type of runner that the job will run on + runs-on: windows-latest + + # Steps represent a sequence of tasks that will be executed as part of the job + steps: + - name: Checkout code + uses: actions/checkout@v2 + + - name: Auto Release on Commit + uses: softprops/action-gh-release@v1 + with: + title: Version ${{ env.semver }} + changelog: CHANGELOG.md + regex: 'v\d+\.\d+\.\d+' # Customize the version pattern \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..ff57201 --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1 @@ +My changes test \ No newline at end of file From 51fe7598d9ffc7854335a4526bda2fba72965efb Mon Sep 17 00:00:00 2001 From: Bradley-Augstein_finastra Date: Thu, 4 Jul 2024 07:54:59 +0100 Subject: [PATCH 10/12] Change after tag --- UnitTest/UnitTest1/HelperFunctions.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/UnitTest/UnitTest1/HelperFunctions.cpp b/UnitTest/UnitTest1/HelperFunctions.cpp index c91e641..aa38c8a 100644 --- a/UnitTest/UnitTest1/HelperFunctions.cpp +++ b/UnitTest/UnitTest1/HelperFunctions.cpp @@ -3,6 +3,7 @@ #include #include + using namespace std; char* HelperFunctions::GetEnvVariable(std::string name) From a8b7273ea3a267c39ec6619a29c5d019f5e63f0c Mon Sep 17 00:00:00 2001 From: Bradley-Augstein_finastra Date: Thu, 4 Jul 2024 08:47:40 +0100 Subject: [PATCH 11/12] Test auto tag increment --- .github/workflows/AutoRelease.yml | 27 +++++++++++++-------------- 1 file changed, 13 insertions(+), 14 deletions(-) diff --git a/.github/workflows/AutoRelease.yml b/.github/workflows/AutoRelease.yml index 1ffd6bc..46668fe 100644 --- a/.github/workflows/AutoRelease.yml +++ b/.github/workflows/AutoRelease.yml @@ -6,19 +6,18 @@ on: # A workflow run is made up of one or more jobs that can run sequentially or in parallel jobs: - # This workflow contains a single job called "build" - release: - # The type of runner that the job will run on - runs-on: windows-latest - - # Steps represent a sequence of tasks that will be executed as part of the job + update-tag: + runs-on: ubuntu-latest steps: - - name: Checkout code - uses: actions/checkout@v2 - - - name: Auto Release on Commit - uses: softprops/action-gh-release@v1 + - name: Check out repository code + uses: actions/checkout@v3 + - name: Get the latest tag + id: get_tag + run: echo "::set-output name=tag::$(git describe --tags --abbrev=0)" + - name: Increment version + id: increment_version + run: echo "::set-output name=version::$(echo ${{ steps.get_tag.outputs.tag }} | awk -F. '{$NF = $NF + 1;} 1' OFS=.)" + - name: Push new tag + uses: EndBug/latest-tag@latest with: - title: Version ${{ env.semver }} - changelog: CHANGELOG.md - regex: 'v\d+\.\d+\.\d+' # Customize the version pattern \ No newline at end of file + tag-name: "v${{ steps.increment_version.outputs.version }}" \ No newline at end of file From 82db41576b1515e8dc2dea8bdfd81a539fdd2abb Mon Sep 17 00:00:00 2001 From: Bradley-Augstein_finastra Date: Mon, 10 Feb 2025 11:27:52 +0000 Subject: [PATCH 12/12] Simple sort example --- .../Sort/ExampleForSort/ExampleForSort.cpp | 69 +++++++++ .../Sort/ExampleForSort/ExampleForSort.sln | 28 ++++ .../ExampleForSort/ExampleForSort.vcxproj | 135 ++++++++++++++++++ .../ExampleForSort.vcxproj.filters | 22 +++ .../ExampleForSort.vcxproj.user | 4 + 5 files changed, 258 insertions(+) create mode 100644 C++/LambdaFunctions/Sort/ExampleForSort/ExampleForSort.cpp create mode 100644 C++/LambdaFunctions/Sort/ExampleForSort/ExampleForSort.sln create mode 100644 C++/LambdaFunctions/Sort/ExampleForSort/ExampleForSort.vcxproj create mode 100644 C++/LambdaFunctions/Sort/ExampleForSort/ExampleForSort.vcxproj.filters create mode 100644 C++/LambdaFunctions/Sort/ExampleForSort/ExampleForSort.vcxproj.user diff --git a/C++/LambdaFunctions/Sort/ExampleForSort/ExampleForSort.cpp b/C++/LambdaFunctions/Sort/ExampleForSort/ExampleForSort.cpp new file mode 100644 index 0000000..4ee157b --- /dev/null +++ b/C++/LambdaFunctions/Sort/ExampleForSort/ExampleForSort.cpp @@ -0,0 +1,69 @@ +// ExampleForSort.cpp : This file contains the 'main' function. Program execution begins and ends there. +// + +#include +#include +#include +#include +#include + +void generateRandomNumbers(std::vector& vec, int size) { + std::random_device rd; + std::mt19937 gen(rd()); + std::uniform_int_distribution<> dis(1, 10000); + + vec.clear(); + vec.reserve(size); + for (int i = 0; i < size; ++i) { + vec.push_back(dis(gen)); + } +} + + +void measurePerformance(const std::vector& vec, const std::string& description) { + auto start = std::chrono::high_resolution_clock::now(); + std::vector sortedVec = vec; + std::sort(sortedVec.begin(), sortedVec.end()); + auto end = std::chrono::high_resolution_clock::now(); + std::chrono::duration sortDuration = end - start; + std::cout << "Time taken to sort " << description << ": " << sortDuration.count() << " seconds\n"; + + start = std::chrono::high_resolution_clock::now(); + bool isSorted = std::is_sorted(sortedVec.begin(), sortedVec.end()); + end = std::chrono::high_resolution_clock::now(); + std::chrono::duration checkDuration = end - start; + std::cout << "Time taken to check if sorted " << description << ": " << checkDuration.count() << " seconds\n"; + std::cout << "Array is sorted: " << (isSorted ? "true" : "false") << "\n"; + + if (description == "already sorted array") { + std::cout << "Performance improvement for checking sorted array: " + << (sortDuration.count() / checkDuration.count()) << " times faster\n"; + } +} + +int main() +{ + const int size = 10000000; + std::vector vec; + generateRandomNumbers(vec, size); + + std::cout << "Performance with random array:\n"; + measurePerformance(vec, "random array"); + + std::cout << "\nPerformance with already sorted array:\n"; + std::sort(vec.begin(), vec.end()); + measurePerformance(vec, "already sorted array"); + + return 0; +} + +// Run program: Ctrl + F5 or Debug > Start Without Debugging menu +// Debug program: F5 or Debug > Start Debugging menu + +// Tips for Getting Started: +// 1. Use the Solution Explorer window to add/manage files +// 2. Use the Team Explorer window to connect to source control +// 3. Use the Output window to see build output and other messages +// 4. Use the Error List window to view errors +// 5. Go to Project > Add New Item to create new code files, or Project > Add Existing Item to add existing code files to the project +// 6. In the future, to open this project again, go to File > Open > Project and select the .sln file diff --git a/C++/LambdaFunctions/Sort/ExampleForSort/ExampleForSort.sln b/C++/LambdaFunctions/Sort/ExampleForSort/ExampleForSort.sln new file mode 100644 index 0000000..1c860a1 --- /dev/null +++ b/C++/LambdaFunctions/Sort/ExampleForSort/ExampleForSort.sln @@ -0,0 +1,28 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 17 +VisualStudioVersion = 17.12.35707.178 d17.12 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "ExampleForSort", "ExampleForSort.vcxproj", "{0BD47328-C55F-437D-8981-36784B03D239}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|x64 = Debug|x64 + Debug|x86 = Debug|x86 + Release|x64 = Release|x64 + Release|x86 = Release|x86 + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {0BD47328-C55F-437D-8981-36784B03D239}.Debug|x64.ActiveCfg = Debug|x64 + {0BD47328-C55F-437D-8981-36784B03D239}.Debug|x64.Build.0 = Debug|x64 + {0BD47328-C55F-437D-8981-36784B03D239}.Debug|x86.ActiveCfg = Debug|Win32 + {0BD47328-C55F-437D-8981-36784B03D239}.Debug|x86.Build.0 = Debug|Win32 + {0BD47328-C55F-437D-8981-36784B03D239}.Release|x64.ActiveCfg = Release|x64 + {0BD47328-C55F-437D-8981-36784B03D239}.Release|x64.Build.0 = Release|x64 + {0BD47328-C55F-437D-8981-36784B03D239}.Release|x86.ActiveCfg = Release|Win32 + {0BD47328-C55F-437D-8981-36784B03D239}.Release|x86.Build.0 = Release|Win32 + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection +EndGlobal diff --git a/C++/LambdaFunctions/Sort/ExampleForSort/ExampleForSort.vcxproj b/C++/LambdaFunctions/Sort/ExampleForSort/ExampleForSort.vcxproj new file mode 100644 index 0000000..98ec1af --- /dev/null +++ b/C++/LambdaFunctions/Sort/ExampleForSort/ExampleForSort.vcxproj @@ -0,0 +1,135 @@ + + + + + Debug + Win32 + + + Release + Win32 + + + Debug + x64 + + + Release + x64 + + + + 17.0 + Win32Proj + {0bd47328-c55f-437d-8981-36784b03d239} + ExampleForSort + 10.0 + + + + Application + true + v143 + Unicode + + + Application + false + v143 + true + Unicode + + + Application + true + v143 + Unicode + + + Application + false + v143 + true + Unicode + + + + + + + + + + + + + + + + + + + + + + Level3 + true + WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions) + true + + + Console + true + + + + + Level3 + true + true + true + WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions) + true + + + Console + true + true + true + + + + + Level3 + true + _DEBUG;_CONSOLE;%(PreprocessorDefinitions) + true + + + Console + true + + + + + Level3 + true + true + true + NDEBUG;_CONSOLE;%(PreprocessorDefinitions) + true + + + Console + true + true + true + + + + + + + + + \ No newline at end of file diff --git a/C++/LambdaFunctions/Sort/ExampleForSort/ExampleForSort.vcxproj.filters b/C++/LambdaFunctions/Sort/ExampleForSort/ExampleForSort.vcxproj.filters new file mode 100644 index 0000000..022a4df --- /dev/null +++ b/C++/LambdaFunctions/Sort/ExampleForSort/ExampleForSort.vcxproj.filters @@ -0,0 +1,22 @@ + + + + + {4FC737F1-C7A5-4376-A066-2A32D752A2FF} + cpp;c;cc;cxx;c++;cppm;ixx;def;odl;idl;hpj;bat;asm;asmx + + + {93995380-89BD-4b04-88EB-625FBE52EBFB} + h;hh;hpp;hxx;h++;hm;inl;inc;ipp;xsd + + + {67DA6AB6-F800-4c08-8B7A-83BB121AAD01} + rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav;mfcribbon-ms + + + + + Source Files + + + \ No newline at end of file diff --git a/C++/LambdaFunctions/Sort/ExampleForSort/ExampleForSort.vcxproj.user b/C++/LambdaFunctions/Sort/ExampleForSort/ExampleForSort.vcxproj.user new file mode 100644 index 0000000..88a5509 --- /dev/null +++ b/C++/LambdaFunctions/Sort/ExampleForSort/ExampleForSort.vcxproj.user @@ -0,0 +1,4 @@ + + + + \ No newline at end of file