mirror of
https://github.com/OrchardCMS/Orchard.git
synced 2025-04-05 17:08:47 +08:00
Update SetVersion target to update AssemblyInfo.cs files
Also, calling the SetVersion target ensure the Orchard msbuild tasks are compiled beforehand. --HG-- branch : dev
This commit is contained in:
parent
b4da079a66
commit
b13e0cea86
21
Orchard.proj
21
Orchard.proj
@ -59,12 +59,21 @@
|
||||
</Target>
|
||||
|
||||
<Target Name ="Compile">
|
||||
<CallTarget Targets="CompileMsBuildTasks"/>
|
||||
|
||||
<MSBuild
|
||||
Projects="$(SrcFolder)\Orchard.sln"
|
||||
Targets="Build"
|
||||
Properties="Configuration=Release;OutputPath=$(CompileFolder)" />
|
||||
</Target>
|
||||
|
||||
<Target Name ="CompileMsBuildTasks">
|
||||
<MSBuild
|
||||
Projects="$(SrcFolder)\Tools\MSBuild.Orchard.Tasks\MSBuild.Orchard.Tasks.csproj"
|
||||
Targets="Build"
|
||||
Properties="Configuration=Release;OutputPath=$(CompileFolder)" />
|
||||
</Target>
|
||||
|
||||
|
||||
<!-- Testing -->
|
||||
|
||||
@ -225,7 +234,8 @@
|
||||
|
||||
<!-- Version -->
|
||||
<!-- Update all AssemblyInfo.cs and module.txt files to contain $(Version) -->
|
||||
<Target Name="SetVersion">
|
||||
<Target Name="SetVersion" Condition="$(Version) != ''">
|
||||
<CallTarget Targets="CompileMsBuildTasks"/>
|
||||
<ItemGroup>
|
||||
<Version-AssemblyInfos Include="$(SrcFolder)\**\AssemblyInfo.cs" />
|
||||
<Version-Modules Include="$(SrcFolder)\**\Module.txt" />
|
||||
@ -233,9 +243,12 @@
|
||||
|
||||
<FileUpdateLines Files="@(Version-Modules)"
|
||||
Regex="^(orchardversion|version)(\s*):(\s*)(.*)"
|
||||
ReplacementText="$1$2:${3}$(Version)"/>
|
||||
ReplacementText="${1}${2}:${3}$(Version)"
|
||||
IgnoreCase="True"/>
|
||||
|
||||
<FileUpdateLines Files="@(Version-AssemblyInfos)"
|
||||
Regex="^\[assembly:(\s)*(AssemblyVersion|AssemblyFileVersion)(\s)*\("(.*)"\)(\s)*\]"
|
||||
ReplacementText="[assembly:${1}${2}${3}("$(Version)")${5}]"
|
||||
IgnoreCase="True"/>
|
||||
</Target>
|
||||
|
||||
</Project>
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user