-
Notifications
You must be signed in to change notification settings - Fork 4
INFORCRM-34691: CS1286371 Google calendar not syncing (SData Sync Con… #25
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
Changes from 5 commits
Commits
Show all changes
8 commits
Select commit
Hold shift + click to select a range
187836e
INFORCRM-34691: CS1286371 Google calendar not syncing (SData Sync Con…
mcessna 8da1ae1
INFORCRM-34691: CS1286371 Google calendar not syncing (SData Sync Con…
mcessna b1e5e90
INFORCRM-34691: CS1286371 Google calendar not syncing (SData Sync Con…
mcessna a93c723
INFORCRM-34691: CS1286371 Google calendar not syncing (SData Sync Con…
mcessna 28c7e98
Correct build path.
mcessna 420f6ca
Remove nuget.config and modify the build to use the existing one.
mcessna 55acc79
Update the runner info.
mcessna 0306cdd
Fix build issue.
mcessna 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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,58 @@ | ||
| name: Build and Test | ||
|
|
||
| on: | ||
| push: | ||
| branches: [ main, master, develop ] | ||
| pull_request: | ||
| branches: [ main, master, develop ] | ||
| workflow_dispatch: | ||
|
|
||
| jobs: | ||
| build-framework: | ||
| name: Build .NET Framework & Run Tests | ||
| runs-on: windows-latest | ||
|
|
||
| steps: | ||
| - name: Checkout | ||
| uses: actions/checkout@v4 | ||
|
|
||
| - name: Setup MSBuild | ||
| uses: microsoft/setup-msbuild@v2 | ||
|
|
||
| - name: Setup NuGet | ||
| uses: NuGet/setup-nuget@v2 | ||
|
|
||
| - name: Install .NET Framework 4.5.2 targeting pack | ||
| run: choco install netfx-4.5.2-devpack -y --no-progress | ||
|
|
||
| - name: Build Framework solution | ||
| run: msbuild DotNetSDataClient.Framework.sln /t:Rebuild /p:Configuration=Debug /verbosity:minimal | ||
|
|
||
| - name: Install NUnit console runner | ||
| run: nuget install NUnit.Runners -Version 2.7.1 -OutputDirectory packages -Source https://api.nuget.org/v3/index.json | ||
|
|
||
| - name: Run tests | ||
| run: packages/NUnit.Runners.2.7.1/tools/nunit-console.exe dist/Debug/Net452/Saleslogix.SData.Client.Test.dll /nologo /result=test-results.xml | ||
|
|
||
| - name: Upload test results | ||
| if: always() | ||
| uses: actions/upload-artifact@v4 | ||
| with: | ||
| name: test-results | ||
| path: test-results.xml | ||
|
|
||
| build-standard: | ||
| name: Build .NET Standard/8 | ||
| runs-on: windows-latest | ||
|
|
||
| steps: | ||
| - name: Checkout | ||
| uses: actions/checkout@v4 | ||
|
|
||
| - name: Setup .NET | ||
| uses: actions/setup-dotnet@v4 | ||
| with: | ||
| dotnet-version: 8.0.x | ||
|
|
||
| - name: Build Standard solution | ||
| run: dotnet build DotNetSDataClient.Standard.sln -c Debug --verbosity minimal | ||
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,16 @@ | ||
| <Project> | ||
|
|
||
| <!-- | ||
| Redirect NuGet restore output and intermediate build files for the SDK-style | ||
| _net8.0 project to an isolated folder. This prevents the shared 'obj' folder | ||
| from containing NuGet artifacts (project.assets.json, etc.), which would | ||
| otherwise cause VS 2022 to run NuGet restore validation against the old-style | ||
| .NET Framework projects in this directory and fail with: | ||
| "Your project does not reference '.NETFramework,Version=...' framework" | ||
| --> | ||
| <PropertyGroup Condition="'$(MSBuildProjectFile)' == 'Saleslogix.SData.Client_net8.0.csproj'"> | ||
| <BaseIntermediateOutputPath>objnet\</BaseIntermediateOutputPath> | ||
| <MSBuildProjectExtensionsPath>$(MSBuildThisFileDirectory)objnet\</MSBuildProjectExtensionsPath> | ||
| </PropertyGroup> | ||
|
|
||
| </Project> |
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.
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.