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 async tests for XrmRealcontext #2

Merged
merged 7 commits into from
Jan 30, 2025
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
18 changes: 9 additions & 9 deletions .github/workflows/CI-3x.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ on:
- '*.txt'

env:
dotnet-version: 3.1.201
dotnet-version: 6.0.407
source-url: "https://nuget.pkg.github.com/${{github.repository_owner}}/index.json"

jobs:
Expand Down Expand Up @@ -45,7 +45,7 @@ jobs:
strategy:
fail-fast: false
matrix:
configuration: ['FAKE_XRM_EASY_9', 'FAKE_XRM_EASY_365', 'FAKE_XRM_EASY_2016','FAKE_XRM_EASY_2015','FAKE_XRM_EASY_2013','FAKE_XRM_EASY']
configuration: ['FAKE_XRM_EASY_9', 'FAKE_XRM_EASY_365', 'FAKE_XRM_EASY_2016','FAKE_XRM_EASY_2015','FAKE_XRM_EASY_2013']

runs-on: windows-latest

Expand Down Expand Up @@ -88,18 +88,18 @@ jobs:
run: dotnet nuget enable source github

- name: Quality Gate
uses: DynamicsValue/dotnet-sonarscanner@v2.3
uses: DynamicsValue/dotnet-sonarscanner@v2.4.7
with:
buildCommand: dotnet build . --configuration 'FAKE_XRM_EASY_9' --framework netcoreapp3.1
testCommand: dotnet test . --configuration 'FAKE_XRM_EASY_9' --framework netcoreapp3.1 --verbosity normal --collect:"XPlat code coverage" --settings tests/.runsettings --results-directory ./coverage
buildCommand: dotnet build . --configuration 'FAKE_XRM_EASY_9' --framework net6.0
testCommand: dotnet test . --configuration 'FAKE_XRM_EASY_9' --framework net6.0 --verbosity normal --collect:"XPlat code coverage" --settings tests/.runsettings --results-directory ./coverage
projectKey: ${{ secrets.SONAR_PROJECT_KEY }}
projectName: fake-xrm-easy-integration
sonarOrganisation: ${{ vars.SONAR_ORG_NAME }}
beginArguments: >
/d:sonar.verbose="true"
/d:sonar.qualitygate.wait="true"
/d:sonar.cs.opencover.reportsPaths='"coverage/**/coverage.opencover.xml"'
/d:sonar.coverage.exclusions='"tests/**/**"'
/d:sonar.verbose="true"
/d:sonar.qualitygate.wait="true"
/d:sonar.cs.opencover.reportsPaths='"coverage/**/coverage.opencover.xml"'
/d:sonar.coverage.exclusions='"tests/**/**"'
env:
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Expand Down
18 changes: 9 additions & 9 deletions .github/workflows/CI-PullRequest-3x.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ on:
- '*.txt'

env:
dotnet-version: 3.1.201
dotnet-version: 6.0.407
source-url: "https://nuget.pkg.github.com/${{github.repository_owner}}/index.json"

jobs:
Expand Down Expand Up @@ -45,7 +45,7 @@ jobs:
strategy:
fail-fast: false
matrix:
configuration: ['FAKE_XRM_EASY_9', 'FAKE_XRM_EASY_365', 'FAKE_XRM_EASY_2016','FAKE_XRM_EASY_2015','FAKE_XRM_EASY_2013','FAKE_XRM_EASY']
configuration: ['FAKE_XRM_EASY_9', 'FAKE_XRM_EASY_365', 'FAKE_XRM_EASY_2016','FAKE_XRM_EASY_2015','FAKE_XRM_EASY_2013']

runs-on: windows-latest

Expand Down Expand Up @@ -88,14 +88,14 @@ jobs:
run: dotnet nuget enable source github

- name: Quality Gate
uses: DynamicsValue/dotnet-sonarscanner@v2.3
uses: DynamicsValue/dotnet-sonarscanner@v2.4.7
with:
buildCommand: dotnet build . --configuration 'FAKE_XRM_EASY_9' --framework netcoreapp3.1
testCommand: dotnet test . --configuration 'FAKE_XRM_EASY_9' --framework netcoreapp3.1 --verbosity normal --collect:"XPlat code coverage" --settings tests/.runsettings --results-directory ./coverage
projectKey: ${{ secrets.SONAR_PROJECT_KEY }}
projectName: fake-xrm-easy-integration
sonarOrganisation: ${{ vars.SONAR_ORG_NAME }}
beginArguments: >
buildCommand: dotnet build . --configuration 'FAKE_XRM_EASY_9' --framework net6.0
testCommand: dotnet test . --configuration 'FAKE_XRM_EASY_9' --framework net6.0 --verbosity normal --collect:"XPlat code coverage" --settings tests/.runsettings --results-directory ./coverage
projectKey: ${{ secrets.SONAR_PROJECT_KEY }}
projectName: fake-xrm-easy-integration
sonarOrganisation: ${{ vars.SONAR_ORG_NAME }}
beginArguments: >
/d:sonar.verbose="true"
/d:sonar.qualitygate.wait="true"
/d:sonar.cs.opencover.reportsPaths='"coverage/**/coverage.opencover.xml"'
Expand Down
18 changes: 9 additions & 9 deletions .github/workflows/PushNuget-3x.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ on:
- '*.txt'

env:
dotnet-version: 3.1.201
dotnet-version: 6.0.407
source-url: "https://api.nuget.org/v3/index.json"

jobs:
Expand Down Expand Up @@ -85,18 +85,18 @@ jobs:
run: dotnet nuget enable source github

- name: Quality Gate
uses: DynamicsValue/dotnet-sonarscanner@v2.3
uses: DynamicsValue/dotnet-sonarscanner@v2.4.7
with:
buildCommand: dotnet build . --configuration 'FAKE_XRM_EASY_9' --framework netcoreapp3.1
testCommand: dotnet test . --configuration 'FAKE_XRM_EASY_9' --framework netcoreapp3.1 --verbosity normal --collect:"XPlat code coverage" --settings tests/.runsettings --results-directory ./coverage
buildCommand: dotnet build . --configuration 'FAKE_XRM_EASY_9' --framework net6.0
testCommand: dotnet test . --configuration 'FAKE_XRM_EASY_9' --framework net6.0 --verbosity normal --collect:"XPlat code coverage" --settings tests/.runsettings --results-directory ./coverage
projectKey: ${{ secrets.SONAR_PROJECT_KEY }}
projectName: fake-xrm-easy-integration
sonarOrganisation: dynamicsvalue
sonarOrganisation: ${{ vars.SONAR_ORG_NAME }}
beginArguments: >
/d:sonar.verbose="true"
/d:sonar.qualitygate.wait="true"
/d:sonar.cs.opencover.reportsPaths='"coverage/**/coverage.opencover.xml"'
/d:sonar.coverage.exclusions='"tests/**/**"'
/d:sonar.verbose="true"
/d:sonar.qualitygate.wait="true"
/d:sonar.cs.opencover.reportsPaths='"coverage/**/coverage.opencover.xml"'
/d:sonar.coverage.exclusions='"tests/**/**"'
env:
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Expand Down
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
## [2.6.0]
## [3.6.0]

### Added

Expand Down
11 changes: 11 additions & 0 deletions src/FakeXrmEasy.Integration/EmptyConnectionStringException.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
using System;

namespace FakeXrmEasy;

public class EmptyConnectionStringException: Exception

Check warning on line 5 in src/FakeXrmEasy.Integration/EmptyConnectionStringException.cs

View workflow job for this annotation

GitHub Actions / build-netcore (ubuntu-latest)

Missing XML comment for publicly visible type or member 'EmptyConnectionStringException'

Check warning on line 5 in src/FakeXrmEasy.Integration/EmptyConnectionStringException.cs

View workflow job for this annotation

GitHub Actions / build-netcore (ubuntu-latest)

Missing XML comment for publicly visible type or member 'EmptyConnectionStringException'

Check warning on line 5 in src/FakeXrmEasy.Integration/EmptyConnectionStringException.cs

View workflow job for this annotation

GitHub Actions / build-windows (FAKE_XRM_EASY_9)

Missing XML comment for publicly visible type or member 'EmptyConnectionStringException'

Check warning on line 5 in src/FakeXrmEasy.Integration/EmptyConnectionStringException.cs

View workflow job for this annotation

GitHub Actions / build-windows (FAKE_XRM_EASY_9)

Missing XML comment for publicly visible type or member 'EmptyConnectionStringException'

Check warning on line 5 in src/FakeXrmEasy.Integration/EmptyConnectionStringException.cs

View workflow job for this annotation

GitHub Actions / build-netcore (macos-latest)

Missing XML comment for publicly visible type or member 'EmptyConnectionStringException'

Check warning on line 5 in src/FakeXrmEasy.Integration/EmptyConnectionStringException.cs

View workflow job for this annotation

GitHub Actions / build-netcore (macos-latest)

Missing XML comment for publicly visible type or member 'EmptyConnectionStringException'

Check warning on line 5 in src/FakeXrmEasy.Integration/EmptyConnectionStringException.cs

View workflow job for this annotation

GitHub Actions / build-windows (FAKE_XRM_EASY_365)

Missing XML comment for publicly visible type or member 'EmptyConnectionStringException'

Check warning on line 5 in src/FakeXrmEasy.Integration/EmptyConnectionStringException.cs

View workflow job for this annotation

GitHub Actions / build-windows (FAKE_XRM_EASY_365)

Missing XML comment for publicly visible type or member 'EmptyConnectionStringException'

Check warning on line 5 in src/FakeXrmEasy.Integration/EmptyConnectionStringException.cs

View workflow job for this annotation

GitHub Actions / build-windows (FAKE_XRM_EASY_2016)

Missing XML comment for publicly visible type or member 'EmptyConnectionStringException'

Check warning on line 5 in src/FakeXrmEasy.Integration/EmptyConnectionStringException.cs

View workflow job for this annotation

GitHub Actions / build-windows (FAKE_XRM_EASY_2016)

Missing XML comment for publicly visible type or member 'EmptyConnectionStringException'

Check warning on line 5 in src/FakeXrmEasy.Integration/EmptyConnectionStringException.cs

View workflow job for this annotation

GitHub Actions / build-windows (FAKE_XRM_EASY_2015)

Missing XML comment for publicly visible type or member 'EmptyConnectionStringException'

Check warning on line 5 in src/FakeXrmEasy.Integration/EmptyConnectionStringException.cs

View workflow job for this annotation

GitHub Actions / build-windows (FAKE_XRM_EASY_2015)

Missing XML comment for publicly visible type or member 'EmptyConnectionStringException'

Check warning on line 5 in src/FakeXrmEasy.Integration/EmptyConnectionStringException.cs

View workflow job for this annotation

GitHub Actions / build-windows (FAKE_XRM_EASY_2013)

Missing XML comment for publicly visible type or member 'EmptyConnectionStringException'

Check warning on line 5 in src/FakeXrmEasy.Integration/EmptyConnectionStringException.cs

View workflow job for this annotation

GitHub Actions / build-windows (FAKE_XRM_EASY_2013)

Missing XML comment for publicly visible type or member 'EmptyConnectionStringException'

Check warning on line 5 in src/FakeXrmEasy.Integration/EmptyConnectionStringException.cs

View workflow job for this annotation

GitHub Actions / sonar

Missing XML comment for publicly visible type or member 'EmptyConnectionStringException'

Check warning on line 5 in src/FakeXrmEasy.Integration/EmptyConnectionStringException.cs

View workflow job for this annotation

GitHub Actions / sonar

Missing XML comment for publicly visible type or member 'EmptyConnectionStringException'
{
public EmptyConnectionStringException(): base("Please create an XrmRealContext class using the connection string constructor.")

Check warning on line 7 in src/FakeXrmEasy.Integration/EmptyConnectionStringException.cs

View workflow job for this annotation

GitHub Actions / build-netcore (ubuntu-latest)

Missing XML comment for publicly visible type or member 'EmptyConnectionStringException.EmptyConnectionStringException()'

Check warning on line 7 in src/FakeXrmEasy.Integration/EmptyConnectionStringException.cs

View workflow job for this annotation

GitHub Actions / build-netcore (ubuntu-latest)

Missing XML comment for publicly visible type or member 'EmptyConnectionStringException.EmptyConnectionStringException()'

Check warning on line 7 in src/FakeXrmEasy.Integration/EmptyConnectionStringException.cs

View workflow job for this annotation

GitHub Actions / build-windows (FAKE_XRM_EASY_9)

Missing XML comment for publicly visible type or member 'EmptyConnectionStringException.EmptyConnectionStringException()'

Check warning on line 7 in src/FakeXrmEasy.Integration/EmptyConnectionStringException.cs

View workflow job for this annotation

GitHub Actions / build-windows (FAKE_XRM_EASY_9)

Missing XML comment for publicly visible type or member 'EmptyConnectionStringException.EmptyConnectionStringException()'

Check warning on line 7 in src/FakeXrmEasy.Integration/EmptyConnectionStringException.cs

View workflow job for this annotation

GitHub Actions / build-netcore (macos-latest)

Missing XML comment for publicly visible type or member 'EmptyConnectionStringException.EmptyConnectionStringException()'

Check warning on line 7 in src/FakeXrmEasy.Integration/EmptyConnectionStringException.cs

View workflow job for this annotation

GitHub Actions / build-netcore (macos-latest)

Missing XML comment for publicly visible type or member 'EmptyConnectionStringException.EmptyConnectionStringException()'

Check warning on line 7 in src/FakeXrmEasy.Integration/EmptyConnectionStringException.cs

View workflow job for this annotation

GitHub Actions / build-windows (FAKE_XRM_EASY_365)

Missing XML comment for publicly visible type or member 'EmptyConnectionStringException.EmptyConnectionStringException()'

Check warning on line 7 in src/FakeXrmEasy.Integration/EmptyConnectionStringException.cs

View workflow job for this annotation

GitHub Actions / build-windows (FAKE_XRM_EASY_365)

Missing XML comment for publicly visible type or member 'EmptyConnectionStringException.EmptyConnectionStringException()'

Check warning on line 7 in src/FakeXrmEasy.Integration/EmptyConnectionStringException.cs

View workflow job for this annotation

GitHub Actions / build-windows (FAKE_XRM_EASY_2016)

Missing XML comment for publicly visible type or member 'EmptyConnectionStringException.EmptyConnectionStringException()'

Check warning on line 7 in src/FakeXrmEasy.Integration/EmptyConnectionStringException.cs

View workflow job for this annotation

GitHub Actions / build-windows (FAKE_XRM_EASY_2016)

Missing XML comment for publicly visible type or member 'EmptyConnectionStringException.EmptyConnectionStringException()'

Check warning on line 7 in src/FakeXrmEasy.Integration/EmptyConnectionStringException.cs

View workflow job for this annotation

GitHub Actions / build-windows (FAKE_XRM_EASY_2015)

Missing XML comment for publicly visible type or member 'EmptyConnectionStringException.EmptyConnectionStringException()'

Check warning on line 7 in src/FakeXrmEasy.Integration/EmptyConnectionStringException.cs

View workflow job for this annotation

GitHub Actions / build-windows (FAKE_XRM_EASY_2015)

Missing XML comment for publicly visible type or member 'EmptyConnectionStringException.EmptyConnectionStringException()'

Check warning on line 7 in src/FakeXrmEasy.Integration/EmptyConnectionStringException.cs

View workflow job for this annotation

GitHub Actions / build-windows (FAKE_XRM_EASY_2013)

Missing XML comment for publicly visible type or member 'EmptyConnectionStringException.EmptyConnectionStringException()'

Check warning on line 7 in src/FakeXrmEasy.Integration/EmptyConnectionStringException.cs

View workflow job for this annotation

GitHub Actions / build-windows (FAKE_XRM_EASY_2013)

Missing XML comment for publicly visible type or member 'EmptyConnectionStringException.EmptyConnectionStringException()'

Check warning on line 7 in src/FakeXrmEasy.Integration/EmptyConnectionStringException.cs

View workflow job for this annotation

GitHub Actions / sonar

Missing XML comment for publicly visible type or member 'EmptyConnectionStringException.EmptyConnectionStringException()'

Check warning on line 7 in src/FakeXrmEasy.Integration/EmptyConnectionStringException.cs

View workflow job for this annotation

GitHub Actions / sonar

Missing XML comment for publicly visible type or member 'EmptyConnectionStringException.EmptyConnectionStringException()'
{

}
}
110 changes: 34 additions & 76 deletions src/FakeXrmEasy.Integration/FakeXrmEasy.Integration.csproj
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFrameworks Condition="'$(Configuration)'=='FAKE_XRM_EASY_9'">net462</TargetFrameworks>
<TargetFrameworks Condition="'$(Configuration)'=='FAKE_XRM_EASY_365'">net462;net452</TargetFrameworks>
<TargetFrameworks Condition="'$(Configuration)'=='FAKE_XRM_EASY_2016'">net452</TargetFrameworks>
<TargetFrameworks Condition="'$(Configuration)'=='FAKE_XRM_EASY_2015'">net452</TargetFrameworks>
<TargetFrameworks Condition="'$(Configuration)'=='FAKE_XRM_EASY_2013'">net452</TargetFrameworks>
<TargetFrameworks Condition="'$(Configuration)'=='FAKE_XRM_EASY'">net452</TargetFrameworks>
<TargetFrameworks Condition="'$(Configuration)'=='FAKE_XRM_EASY_9'">net6.0</TargetFrameworks>
<TargetFrameworks Condition="'$(Configuration)'=='FAKE_XRM_EASY_365'">net6.0</TargetFrameworks>
<TargetFrameworks Condition="'$(Configuration)'=='FAKE_XRM_EASY_2016'">net6.0</TargetFrameworks>
<TargetFrameworks Condition="'$(Configuration)'=='FAKE_XRM_EASY_2015'">net6.0</TargetFrameworks>
<TargetFrameworks Condition="'$(Configuration)'=='FAKE_XRM_EASY_2013'">net6.0</TargetFrameworks>
<TargetFrameworks Condition="'$(Configuration)'=='FAKE_XRM_EASY'">net6.0</TargetFrameworks>
<PackageId>FakeXrmEasy.Integration</PackageId>
<VersionPrefix>2.6.0</VersionPrefix>
<VersionPrefix>3.6.0</VersionPrefix>
<Authors>Jordi Montaña</Authors>
<Company>Dynamics Value</Company>
<Title>FakeXrmEasy Integration</Title>
Expand All @@ -33,109 +33,67 @@
</ItemGroup>

<PropertyGroup Condition="'$(Configuration)'=='FAKE_XRM_EASY'">
<DefineConstants>DEBUG;TRACE;FAKE_XRM_EASY;FXE_V2</DefineConstants>
<DefineConstants>DEBUG;TRACE;FAKE_XRM_EASY;</DefineConstants>
</PropertyGroup>

<PropertyGroup Condition="'$(Configuration)'=='FAKE_XRM_EASY_2013'">
<DefineConstants>DEBUG;TRACE;FAKE_XRM_EASY_2013;FXE_V2</DefineConstants>
<DefineConstants>DEBUG;TRACE;FAKE_XRM_EASY_2013;</DefineConstants>
</PropertyGroup>

<PropertyGroup Condition="'$(Configuration)'=='FAKE_XRM_EASY_2015'">
<DefineConstants>DEBUG;TRACE;FAKE_XRM_EASY_2015;FXE_V2</DefineConstants>
<DefineConstants>DEBUG;TRACE;FAKE_XRM_EASY_2015;</DefineConstants>
</PropertyGroup>

<PropertyGroup Condition="'$(Configuration)'=='FAKE_XRM_EASY_2016'">
<DefineConstants>DEBUG;TRACE;FAKE_XRM_EASY_2016;FXE_V2</DefineConstants>
<DefineConstants>DEBUG;TRACE;FAKE_XRM_EASY_2016;</DefineConstants>
</PropertyGroup>

<PropertyGroup Condition="'$(Configuration)'=='FAKE_XRM_EASY_365'">
<DefineConstants>DEBUG;TRACE;FAKE_XRM_EASY_365;FXE_V2</DefineConstants>
<DefineConstants>DEBUG;TRACE;FAKE_XRM_EASY_365;</DefineConstants>
</PropertyGroup>

<PropertyGroup Condition="'$(Configuration)'=='FAKE_XRM_EASY_9'">
<DefineConstants>DEBUG;TRACE;FAKE_XRM_EASY_9;FXE_V2</DefineConstants>
<DefineConstants>DEBUG;TRACE;FAKE_XRM_EASY_9;</DefineConstants>
</PropertyGroup>

<ItemGroup Condition="'$(TargetFramework)' == 'net462' And '$(Configuration)'=='FAKE_XRM_EASY_9'">
<PackageReference Include="Microsoft.CrmSdk.CoreAssemblies" Version="9.0.2.52" />
<PackageReference Include="Microsoft.CrmSdk.XrmTooling.CoreAssembly" Version="9.1.1.45" />
</ItemGroup>

<ItemGroup Condition="'$(TargetFramework)' == 'net462' And '$(Configuration)'=='FAKE_XRM_EASY_365'">
<PackageReference Include="Microsoft.CrmSdk.CoreAssemblies" Version="[8.2.0.2,9.0)" />
<PackageReference Include="Microsoft.CrmSdk.XrmTooling.CoreAssembly" Version="[8.2.0.1,9.0)" />
</ItemGroup>

<ItemGroup Condition="'$(TargetFramework)' == 'net452' And '$(Configuration)'=='FAKE_XRM_EASY_365'">
<PackageReference Include="Microsoft.CrmSdk.CoreAssemblies" Version="[8.2.0.1,9.0)" />
<PackageReference Include="Microsoft.CrmSdk.XrmTooling.CoreAssembly" Version="[8.2.0.1,9.0)" />
</ItemGroup>

<ItemGroup Condition="'$(TargetFramework)' == 'net452' And '$(Configuration)'=='FAKE_XRM_EASY_2016'">
<PackageReference Include="Microsoft.CrmSdk.CoreAssemblies" Version="[8.1.0.2,8.2)" />
<PackageReference Include="Microsoft.CrmSdk.XrmTooling.CoreAssembly" Version="[8.1.0.2,8.2)" />
</ItemGroup>

<ItemGroup Condition="'$(TargetFramework)' == 'net452' And '$(Configuration)'=='FAKE_XRM_EASY_2015'">
<PackageReference Include="Microsoft.CrmSdk.CoreAssemblies" Version="[7.1.1,8.0)" />
<PackageReference Include="Microsoft.CrmSdk.Extensions" Version="[7.1.0.1,8.0)" />
<PackageReference Include="Microsoft.CrmSdk.XrmTooling.CoreAssembly" Version="[7.0.0.1,8.0)" />
</ItemGroup>

<ItemGroup Condition="'$(TargetFramework)' == 'net452' And '$(Configuration)'=='FAKE_XRM_EASY_2013'">
<PackageReference Include="Microsoft.CrmSdk.CoreAssemblies" Version="[6.1.2,7.0)" />
<PackageReference Include="Microsoft.CrmSdk.Extensions" Version="[6.0.0,7.0)" />
<PackageReference Include="Microsoft.CrmSdk.Workflow" Version="[6.0.0,7.0)" />
<PackageReference Include="Microsoft.CrmSdk.Deployment" Version="[6.0.0,7.0)" />
<ItemGroup>
<PackageReference Include="Microsoft.PowerPlatform.Dataverse.Client" Version="1.1.22" />
<PackageReference Include="Microsoft.PowerPlatform.Dataverse.Client.Dynamics" Version="1.1.22" />
</ItemGroup>

<ItemGroup Condition="'$(TargetFramework)' == 'net452' And '$(Configuration)'=='FAKE_XRM_EASY'">
<PackageReference Include="Microsoft.CrmSdk.CoreAssemblies" Version="[5.0.18]" />
<PackageReference Include="Microsoft.CrmSdk.Extensions" Version="[5.0.18]" />
<PackageReference Include="Microsoft.CrmSdk.Workflow" Version="[5.0.18]" />
<PackageReference Include="Microsoft.CrmSdk.Deployment" Version="[5.0.18]" />
<Reference Include="System.ServiceModel" />
</ItemGroup>

<ItemGroup>
<PackageReference Include="FakeItEasy" Version="[6.0.0,7.0)" />
</ItemGroup>

<ItemGroup Condition="'$(Configuration)'=='FAKE_XRM_EASY'">
<PackageReference Include="FakeXrmEasy.Abstractions.v2011" Version="[2.6.0-*,3.0)" />
<PackageReference Include="FakeXrmEasy.Core.v2011" Version="[2.6.0-*,3.0)" />
<PackageReference Include="FakeXrmEasy.Plugins.v2011" Version="[2.6.0-*,3.0)" />
<PackageReference Include="FakeXrmEasy.CodeActivities.v2011" Version="[2.6.0-*,3.0)" />
<PackageReference Include="FakeXrmEasy.Abstractions.v2011" Version="3.6.0-*" />
<PackageReference Include="FakeXrmEasy.Core.v2011" Version="3.6.0-*" />
<PackageReference Include="FakeXrmEasy.Plugins.v2011" Version="3.6.0-*" />
</ItemGroup>
<ItemGroup Condition="'$(Configuration)'=='FAKE_XRM_EASY_2013'">
<PackageReference Include="FakeXrmEasy.Abstractions.v2013" Version="[2.6.0-*,3.0)" />
<PackageReference Include="FakeXrmEasy.Core.v2013" Version="[2.6.0-*,3.0)" />
<PackageReference Include="FakeXrmEasy.Plugins.v2013" Version="[2.6.0-*,3.0)" />
<PackageReference Include="FakeXrmEasy.CodeActivities.v2013" Version="[2.6.0-*,3.0)" />
<PackageReference Include="FakeXrmEasy.Abstractions.v2013" Version="3.6.0-*" />
<PackageReference Include="FakeXrmEasy.Core.v2013" Version="3.6.0-*" />
<PackageReference Include="FakeXrmEasy.Plugins.v2013" Version="3.6.0-*" />
</ItemGroup>
<ItemGroup Condition="'$(Configuration)'=='FAKE_XRM_EASY_2015'">
<PackageReference Include="FakeXrmEasy.Abstractions.v2015" Version="[2.6.0-*,3.0)" />
<PackageReference Include="FakeXrmEasy.Core.v2015" Version="[2.6.0-*,3.0)" />
<PackageReference Include="FakeXrmEasy.Plugins.v2015" Version="[2.6.0-*,3.0)" />
<PackageReference Include="FakeXrmEasy.CodeActivities.v2015" Version="[2.6.0-*,3.0)" />
<PackageReference Include="FakeXrmEasy.Abstractions.v2015" Version="3.6.0-*" />
<PackageReference Include="FakeXrmEasy.Core.v2015" Version="3.6.0-*" />
<PackageReference Include="FakeXrmEasy.Plugins.v2015" Version="3.6.0-*" />
</ItemGroup>
<ItemGroup Condition="'$(Configuration)'=='FAKE_XRM_EASY_2016'">
<PackageReference Include="FakeXrmEasy.Abstractions.v2016" Version="[2.6.0-*,3.0)" />
<PackageReference Include="FakeXrmEasy.Core.v2016" Version="[2.6.0-*,3.0)" />
<PackageReference Include="FakeXrmEasy.Plugins.v2016" Version="[2.6.0-*,3.0)" />
<PackageReference Include="FakeXrmEasy.CodeActivities.v2016" Version="[2.6.0-*,3.0)" />
<PackageReference Include="FakeXrmEasy.Abstractions.v2016" Version="3.6.0-*" />
<PackageReference Include="FakeXrmEasy.Core.v2016" Version="3.6.0-*" />
<PackageReference Include="FakeXrmEasy.Plugins.v2016" Version="3.6.0-*" />
</ItemGroup>
<ItemGroup Condition="'$(Configuration)'=='FAKE_XRM_EASY_365'">
<PackageReference Include="FakeXrmEasy.Abstractions.v365" Version="[2.6.0-*,3.0)" />
<PackageReference Include="FakeXrmEasy.Core.v365" Version="[2.6.0-*,3.0)" />
<PackageReference Include="FakeXrmEasy.Plugins.v365" Version="[2.6.0-*,3.0)" />
<PackageReference Include="FakeXrmEasy.CodeActivities.v365" Version="[2.6.0-*,3.0)" />
<PackageReference Include="FakeXrmEasy.Abstractions.v365" Version="3.6.0-*" />
<PackageReference Include="FakeXrmEasy.Core.v365" Version="3.6.0-*" />
<PackageReference Include="FakeXrmEasy.Plugins.v365" Version="3.6.0-*" />
</ItemGroup>
<ItemGroup Condition="'$(Configuration)'=='FAKE_XRM_EASY_9'">
<PackageReference Include="FakeXrmEasy.Abstractions.v9" Version="[2.6.0-*,3.0)" />
<PackageReference Include="FakeXrmEasy.Core.v9" Version="[2.6.0-*,3.0)" />
<PackageReference Include="FakeXrmEasy.Plugins.v9" Version="[2.6.0-*,3.0)" />
<PackageReference Include="FakeXrmEasy.CodeActivities.v9" Version="[2.6.0-*,3.0)" />
<PackageReference Include="FakeXrmEasy.Abstractions.v9" Version="3.6.0-*" />
<PackageReference Include="FakeXrmEasy.Core.v9" Version="3.6.0-*" />
<PackageReference Include="FakeXrmEasy.Plugins.v9" Version="3.6.0-*" />
</ItemGroup>

<Target Name="PreparePackageReleaseNotesFromFile" BeforeTargets="GenerateNuspec">
Expand Down
Loading