Skip to content

Commit

Permalink
Fixes packages import files. (#1053)
Browse files Browse the repository at this point in the history
Fixes #1052
  • Loading branch information
jtkech authored and sebastienros committed Oct 2, 2017
1 parent fbe458b commit 59cbb03
Show file tree
Hide file tree
Showing 13 changed files with 15 additions and 15 deletions.
4 changes: 2 additions & 2 deletions src/OrchardCore.Cms.Web/OrchardCore.Cms.Web.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
<Import Project="..\OrchardCore.Build\Dependencies.props" />

<!-- Necessary as we reference the Project and not the Package -->
<Import Project="..\OrchardCore\OrchardCore.Application.Cms.Targets\OrchardCore.Application.Cms.props" />
<Import Project="..\OrchardCore\OrchardCore.Application.Targets\OrchardCore.Application.targets" />
<Import Project="..\OrchardCore\OrchardCore.Application.Cms.Targets\OrchardCore.Application.Cms.Targets.props" />
<Import Project="..\OrchardCore\OrchardCore.Application.Targets\OrchardCore.Application.Targets.targets" />

<PropertyGroup>
<TargetFramework>netcoreapp2.0</TargetFramework>
Expand Down
2 changes: 1 addition & 1 deletion src/OrchardCore.Modules/Directory.Build.props
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="..\OrchardCore.Build\OrchardCore.Commons.props" />
<Import Project="..\OrchardCore\OrchardCore.Module.Targets\OrchardCore.Module.props" />
<Import Project="..\OrchardCore\OrchardCore.Module.Targets\OrchardCore.Module.Targets.props" />
</Project>
2 changes: 1 addition & 1 deletion src/OrchardCore.Mvc.Web/OrchardCore.Mvc.Web.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<Import Project="..\OrchardCore.Build\Dependencies.props" />
<!-- Necessary as we reference the Project and not the Package -->
<Import Project="..\OrchardCore\OrchardCore.Application.Targets\OrchardCore.Application.targets" />
<Import Project="..\OrchardCore\OrchardCore.Application.Targets\OrchardCore.Application.Targets.targets" />

<PropertyGroup>
<TargetFramework>netcoreapp2.0</TargetFramework>
Expand Down
2 changes: 1 addition & 1 deletion src/OrchardCore.Nancy.Web/OrchardCore.Nancy.Web.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<Import Project="..\OrchardCore.Build\Dependencies.props" />

<!-- Necessary as we reference the Project and not the Package -->
<Import Project="..\OrchardCore\OrchardCore.Application.Targets\OrchardCore.Application.targets" />
<Import Project="..\OrchardCore\OrchardCore.Application.Targets\OrchardCore.Application.Targets.targets" />

<PropertyGroup>
<TargetFramework>netcoreapp2.0</TargetFramework>
Expand Down
4 changes: 2 additions & 2 deletions src/OrchardCore.Themes/Directory.Build.props
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="..\OrchardCore.Build\OrchardCore.Commons.props" />
<Import Project="..\OrchardCore\OrchardCore.Theme.Targets\OrchardCore.Theme.props" />
<Import Project="..\OrchardCore\OrchardCore.Module.Targets\OrchardCore.Module.props" />
<Import Project="..\OrchardCore\OrchardCore.Theme.Targets\OrchardCore.Theme.Targets.props" />
<Import Project="..\OrchardCore\OrchardCore.Module.Targets\OrchardCore.Module.Targets.props" />
</Project>
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@

<!-- Add a ".props" file in the package specific to the "Cms" bundle -->
<ItemGroup>
<None Include="OrchardCore.Application.Cms.props" Pack="true">
<PackagePath>build\netstandard2.0\OrchardCore.Application.Cms.props</PackagePath>
<None Include="OrchardCore.Application.Cms.Targets.props" Pack="true">
<PackagePath>build\netstandard2.0\OrchardCore.Application.Cms.Targets.props</PackagePath>
</None>
</ItemGroup>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@
-->

<ItemGroup>
<None Include="OrchardCore.Application.targets" Pack="true">
<PackagePath>build\$(TargetFramework)\OrchardCore.Application.targets</PackagePath>
<None Include="OrchardCore.Application.Targets.targets" Pack="true">
<PackagePath>build\$(TargetFramework)\OrchardCore.Application.Targets.targets</PackagePath>
</None>
</ItemGroup>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@

<!-- Add the OrchardCore.Module.props file in the package -->
<ItemGroup>
<None Include="OrchardCore.Module.props" Pack="true">
<PackagePath>build\$(TargetFramework)\OrchardCore.Module.props</PackagePath>
<None Include="OrchardCore.Module.Targets.props" Pack="true">
<PackagePath>build\$(TargetFramework)\OrchardCore.Module.Targets.props</PackagePath>
</None>
<None Include="Package.Build.props" Pack="true">
<PackagePath>build\$(TargetFramework)\Package.Build.props</PackagePath>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@

<!-- Add a ".props" file in the package specific to the "Theme" module type -->
<ItemGroup>
<None Include="OrchardCore.Theme.props" Pack="true">
<PackagePath>build\netstandard2.0\OrchardCore.Theme.props</PackagePath>
<None Include="OrchardCore.Theme.Targets.props" Pack="true">
<PackagePath>build\netstandard2.0\OrchardCore.Theme.Targets.props</PackagePath>
</None>
</ItemGroup>
<ItemGroup>
Expand Down

0 comments on commit 59cbb03

Please sign in to comment.