Skip to content

Commit

Permalink
Fix project paths
Browse files Browse the repository at this point in the history
  • Loading branch information
jordimontana82 committed Sep 12, 2024
1 parent 747380a commit dab32e7
Showing 1 changed file with 21 additions and 10 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
<VersionPrefix>2.6.0</VersionPrefix>
<Authors>Jordi Montaña</Authors>
<Company>Dynamics Value S.L.</Company>
<Title>Internal Unit test suite for FakeXrmEasy.Core package</Title>
<Title>Internal Unit test suite for FakeXrmEasy.Integration package</Title>
<PackageDescription>FakeXrmEasy is the open source test automation framework for .net core and the Power Platform / Dataverse. This is an internal package for regression testing purposes.</PackageDescription>
<Copyright>(c) 2021 DynamicsValue S.L.</Copyright>
<PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance>
Expand Down Expand Up @@ -62,7 +62,7 @@
<ItemGroup>
<ProjectReference Include="..\DataverseEntities\DataverseEntities.csproj" />
</ItemGroup>

<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" />
Expand Down Expand Up @@ -113,47 +113,58 @@
<PackageReference Include="coverlet.collector" Version="1.2.1" />
</ItemGroup>

<ItemGroup Condition="'$(IsPacking)' == ''">
<ProjectReference Include="..\..\src\FakeXrmEasy.Core\FakeXrmEasy.Core.csproj" />
</ItemGroup>



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

<ItemGroup Condition="'$(PackTests)' == ''">
<ProjectReference Include="..\..\src\FakeXrmEasy.Core\FakeXrmEasy.Core.csproj" />
<ProjectReference Include="..\..\src\FakeXrmEasy.Integration\FakeXrmEasy.Integration.csproj" />
</ItemGroup>

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


Expand Down

0 comments on commit dab32e7

Please sign in to comment.