File tree Expand file tree Collapse file tree 4 files changed +13
-10
lines changed
UmbracoPackage/.template.config
UmbracoProject/.template.config Expand file tree Collapse file tree 4 files changed +13
-10
lines changed Original file line number Diff line number Diff line change 33
33
SkipUnchangedFiles =" true" />
34
34
</Target >
35
35
36
- <Target Name =" IncludeAppPluginsContent" BeforeTargets =" GetCopyToOutputDirectoryItems" >
36
+ <Target Name =" IncludeAppPluginsContent" BeforeTargets =" GetCopyToOutputDirectoryItems;GetCopyToPublishDirectoryItems; " >
37
37
<ItemGroup >
38
38
<_AppPluginsFiles Include =" App_Plugins\**" />
39
39
40
40
<ContentWithTargetPath
41
41
Include =" @(_AppPluginsFiles)"
42
42
TargetPath =" %(Identity)"
43
- CopyToOutputDirectory =" Always" />
43
+ CopyToOutputDirectory =" PreserveNewest"
44
+ CopyToPublishDirectory =" PreserveNewest" />
44
45
</ItemGroup >
45
46
</Target >
46
47
49
50
A fix was put in place in Web SDK to update for wwwwroot in case someone runs npm build etc in a target, we're borrowing their trick.
50
51
https://github.com/dotnet/sdk/blob/e2b2b1a4ac56c955b84d62fe71cda3b6f258b42b/src/WebSdk/Publish/Targets/ComputeTargets/Microsoft.NET.Sdk.Publish.ComputeFiles.targets
51
52
-->
52
- <Target Name =" IncludeUmbracoFolderContent" BeforeTargets =" GetCopyToOutputDirectoryItems" >
53
+ <Target Name =" IncludeUmbracoFolderContent" BeforeTargets =" GetCopyToOutputDirectoryItems;GetCopyToPublishDirectoryItems; " >
53
54
<ItemGroup >
54
55
<_UmbracoFolderFiles Include =" umbraco\config\**" />
55
56
<_UmbracoFolderFiles Include =" umbraco\PartialViewMacros\**" />
65
66
<ContentWithTargetPath
66
67
Include =" @(_UmbracoFolderFiles)"
67
68
TargetPath =" %(Identity)"
68
- CopyToOutputDirectory =" Always" />
69
+ CopyToOutputDirectory =" PreserveNewest"
70
+ CopyToPublishDirectory =" PreserveNewest" />
69
71
</ItemGroup >
70
72
</Target >
71
73
74
+
72
75
<Target Name =" ClearUmbracoAssets" BeforeTargets =" Clean" >
73
76
<ItemGroup >
74
77
<UmbracoConfigPackageDir Include =" $(MSBuildProjectDirectory)\umbraco\config\" />
Original file line number Diff line number Diff line change 24
24
"version" : {
25
25
"type" : " parameter" ,
26
26
"datatype" : " string" ,
27
- "defaultValue" : " 9.1.0 " ,
27
+ "defaultValue" : " 9.1.1 " ,
28
28
"description" : " The version of Umbraco to load using NuGet" ,
29
29
"replaces" : " UMBRACO_VERSION_FROM_TEMPLATE"
30
30
},
Original file line number Diff line number Diff line change 57
57
"version" : {
58
58
"type" : " parameter" ,
59
59
"datatype" : " string" ,
60
- "defaultValue" : " 9.1.0 " ,
60
+ "defaultValue" : " 9.1.1 " ,
61
61
"description" : " The version of Umbraco to load using NuGet" ,
62
62
"replaces" : " UMBRACO_VERSION_FROM_TEMPLATE"
63
63
},
Original file line number Diff line number Diff line change 3
3
<Import Project =" $([MSBuild]::GetPathOfFileAbove('Directory.Build.props', '$(MSBuildThisFileDirectory)../'))" />
4
4
5
5
<PropertyGroup >
6
- <Version >9.1.0 </Version >
7
- <AssemblyVersion >9.1.0 </AssemblyVersion >
8
- <InformationalVersion >9.1.0 </InformationalVersion >
9
- <FileVersion >9.1.0 </FileVersion >
6
+ <Version >9.1.1 </Version >
7
+ <AssemblyVersion >9.1.1 </AssemblyVersion >
8
+ <InformationalVersion >9.1.1 </InformationalVersion >
9
+ <FileVersion >9.1.1 </FileVersion >
10
10
<LangVersion Condition =" '$(LangVersion)' == ''" >9.0</LangVersion >
11
11
<NeutralLanguage >en-US</NeutralLanguage >
12
12
<Company >Umbraco CMS</Company >
You can’t perform that action at this time.
0 commit comments