Skip to content
Open
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
Original file line number Diff line number Diff line change
@@ -1,47 +1,47 @@
<Project Sdk="Microsoft.NET.Sdk.Web">

<PropertyGroup>
<TargetFramework>net10.0</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<!-- Exclude from CI builds - requires OrchardCore 3.0 preview packages -->
<IsPackable>false</IsPackable>
<IsPublishable>false</IsPublishable>
<ExcludeFromSourceBuild>true</ExcludeFromSourceBuild>
<!-- Skip build entirely in CI to avoid package restore failures -->
<ExcludeFromBuild Condition="'$(CI)' == 'true' OR '$(GITHUB_ACTIONS)' == 'true'">true</ExcludeFromBuild>
<UseLocalSharpCoreDbSources Condition="'$(UseLocalSharpCoreDbSources)' == '' and Exists('..\..\..\..\src\SharpCoreDB\SharpCoreDB.csproj')">true</UseLocalSharpCoreDbSources>
<UseLocalSharpCoreDbSources Condition="'$(UseLocalSharpCoreDbSources)' == ''">false</UseLocalSharpCoreDbSources>
</PropertyGroup>

<!-- OrchardCore packages only restored when NOT in CI -->
<ItemGroup Condition="'$(CI)' != 'true' AND '$(GITHUB_ACTIONS)' != 'true'">
<!-- Stable OrchardCore package -->
<PackageReference Include="OrchardCore.Application.Cms.Targets" Version="2.2.1" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="HtmlSanitizer" Version="9.0.892" />
<PackageReference Include="MimeKit" Version="4.15.1" />
<PackageReference Include="Microsoft.Extensions.Http.Resilience" Version="10.4.0" />
<PackageReference Include="Microsoft.AspNetCore.Authentication.OpenIdConnect" Version="10.0.6" />
<PackageReference Include="AWSSDK.Core" Version="4.0.3.29" />
</ItemGroup>

<ItemGroup Condition="'$(UseLocalSharpCoreDbSources)' == 'true'">
<ProjectReference Include="..\..\..\..\src\SharpCoreDB.Data.Provider\SharpCoreDB.Data.Provider.csproj" />
<ProjectReference Include="..\..\..\..\src\SharpCoreDB.Provider.YesSql\SharpCoreDB.Provider.YesSql.csproj" />
<ProjectReference Include="..\..\..\..\src\SharpCoreDB\SharpCoreDB.csproj" />
</ItemGroup>

<ItemGroup Condition="'$(UseLocalSharpCoreDbSources)' != 'true'">
<PackageReference Include="SharpCoreDB.Data.Provider" Version="1.7.0" />
<PackageReference Include="SharpCoreDB.Provider.YesSql" Version="1.7.0" />
<PackageReference Include="SharpCoreDB" Version="1.7.0" />
</ItemGroup>

<ItemGroup>
<PackageReference Update="Microsoft.SourceLink.GitHub" Version="10.0.202" />
</ItemGroup>

</Project>

<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>net10.0</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<!-- Exclude from CI builds - requires OrchardCore 3.0 preview packages -->
<IsPackable>false</IsPackable>
<IsPublishable>false</IsPublishable>
<ExcludeFromSourceBuild>true</ExcludeFromSourceBuild>
<!-- Skip build entirely in CI to avoid package restore failures -->
<ExcludeFromBuild Condition="'$(CI)' == 'true' OR '$(GITHUB_ACTIONS)' == 'true'">true</ExcludeFromBuild>
<UseLocalSharpCoreDbSources Condition="'$(UseLocalSharpCoreDbSources)' == '' and Exists('..\..\..\..\src\SharpCoreDB\SharpCoreDB.csproj')">true</UseLocalSharpCoreDbSources>
<UseLocalSharpCoreDbSources Condition="'$(UseLocalSharpCoreDbSources)' == ''">false</UseLocalSharpCoreDbSources>
</PropertyGroup>
<!-- OrchardCore packages only restored when NOT in CI -->
<ItemGroup Condition="'$(CI)' != 'true' AND '$(GITHUB_ACTIONS)' != 'true'">
<!-- Stable OrchardCore package -->
<PackageReference Include="OrchardCore.Application.Cms.Targets" Version="2.2.1" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="HtmlSanitizer" Version="9.0.892" />
<PackageReference Include="MimeKit" Version="4.15.1" />
<PackageReference Include="Microsoft.Extensions.Http.Resilience" Version="10.5.0" />
<PackageReference Include="Microsoft.AspNetCore.Authentication.OpenIdConnect" Version="10.0.6" />
<PackageReference Include="AWSSDK.Core" Version="4.0.3.29" />
</ItemGroup>
<ItemGroup Condition="'$(UseLocalSharpCoreDbSources)' == 'true'">
<ProjectReference Include="..\..\..\..\src\SharpCoreDB.Data.Provider\SharpCoreDB.Data.Provider.csproj" />
<ProjectReference Include="..\..\..\..\src\SharpCoreDB.Provider.YesSql\SharpCoreDB.Provider.YesSql.csproj" />
<ProjectReference Include="..\..\..\..\src\SharpCoreDB\SharpCoreDB.csproj" />
</ItemGroup>
<ItemGroup Condition="'$(UseLocalSharpCoreDbSources)' != 'true'">
<PackageReference Include="SharpCoreDB.Data.Provider" Version="1.7.0" />
<PackageReference Include="SharpCoreDB.Provider.YesSql" Version="1.7.0" />
<PackageReference Include="SharpCoreDB" Version="1.7.0" />
</ItemGroup>
<ItemGroup>
<PackageReference Update="Microsoft.SourceLink.GitHub" Version="10.0.202" />
</ItemGroup>
</Project>
Loading