File tree Expand file tree Collapse file tree 3 files changed +16
-10
lines changed
Fusion++.Tests/Properties Expand file tree Collapse file tree 3 files changed +16
-10
lines changed Original file line number Diff line number Diff line change 15
15
16
16
[ assembly: Guid ( "967e8901-43de-4af1-86df-bb18c8949c44" ) ]
17
17
18
- // [assembly: AssemblyVersion("1.1.1 .0")]
19
- [ assembly: AssemblyVersion ( "1.1.1 .0" ) ]
20
- [ assembly: AssemblyFileVersion ( "1.1.1 .0" ) ]
18
+ // [assembly: AssemblyVersion("1.2.0 .0")]
19
+ [ assembly: AssemblyVersion ( "1.2.0 .0" ) ]
20
+ [ assembly: AssemblyFileVersion ( "1.2.0 .0" ) ]
21
21
22
- [ assembly: AssemblyInformationalVersion ( "1.1.1-netcore.1+17. Branch.feature/netcore .Sha.09126cceaac7471eac58c87cdd14143fe198120f " ) ]
22
+ [ assembly: AssemblyInformationalVersion ( "1.2.0+ Branch.master .Sha.3f4c8b95ce6955674493af180e6242e95fe6b84d " ) ]
Original file line number Diff line number Diff line change 1
- <Project Sdk =" Microsoft.NET.Sdk.WindowsDesktop" >
1
+ <Project Sdk =" Microsoft.NET.Sdk.WindowsDesktop" >
2
2
3
3
<PropertyGroup >
4
4
<OutputType >WinExe</OutputType >
5
5
<TargetFramework >netcoreapp3.1</TargetFramework >
6
6
<RootNamespace >FusionPlusPlus</RootNamespace >
7
7
<UseWindowsForms >true</UseWindowsForms >
8
8
<ApplicationManifest >app.manifest</ApplicationManifest >
9
- <AssemblyVersion >1.1.0.0 </AssemblyVersion >
10
- <Version >1.1 .0</Version >
11
- <FileVersion >1.1 .0.0</FileVersion >
9
+ <AssemblyVersion >1.2 </AssemblyVersion >
10
+ <Version >1.2.0 .0</Version >
11
+ <FileVersion >1.2 .0.0</FileVersion >
12
12
</PropertyGroup >
13
13
14
14
<ItemGroup >
15
- <PackageReference Include =" DevExpress.WindowsDesktop.Win" Version =" 19.2.6-ctp" />
15
+ <PackageReference Include =" DevExpress.WindowsDesktop.Win.Bars" Version =" 19.2.6-ctp" />
16
+ <PackageReference Include =" DevExpress.WindowsDesktop.Win.Grid" Version =" 19.2.6-ctp" />
17
+ <PackageReference Include =" DevExpress.WindowsDesktop.Win.RichEdit" Version =" 19.2.6-ctp" />
16
18
</ItemGroup >
17
19
18
20
<ItemGroup >
Original file line number Diff line number Diff line change @@ -60,6 +60,10 @@ Task("SetVersion")
60
60
_appVersion = $ "{ gitVersion . Major } .{ gitVersion . Minor } " + ( gitVersion . Patch == 0 ? "" : $ ".{ gitVersion . Patch } ") ;
61
61
var fullVersion = gitVersion . AssemblySemVer ;
62
62
63
+ ReplaceRegexInFiles ( "./**/*.csproj" , "(?<=<AssemblyVersion>).*?(?=</AssemblyVersion>)" , _appVersion ) ;
64
+ ReplaceRegexInFiles ( "./**/*.csproj" , "(?<=<Version>).*?(?=</Version>)" , fullVersion ) ;
65
+ ReplaceRegexInFiles ( "./**/*.csproj" , "(?<=<FileVersion>).*?(?=</FileVersion>)" , fullVersion ) ;
66
+
63
67
Information ( $ "AppVersion:\t { _appVersion } ") ;
64
68
Information ( $ "FullVersion:\t { fullVersion } ") ;
65
69
} ) ;
@@ -138,7 +142,7 @@ Task("Publish")
138
142
139
143
// files are published to Fusion++\bin\Release\netcoreapp3.1\win-x64\publish
140
144
CopyFiles ( $ "./Fusion++/bin/{ configuration } /{ netcoreTargetFramework } /{ settings . Runtime } /publish/**/*", _outputDir , true ) ;
141
-
145
+
142
146
foreach ( var extension in new string [ ] { "pdb" , "config" , "xml" } )
143
147
DeleteFiles ( _outputDir . Path + "/*." + extension ) ;
144
148
} ) ;
You can’t perform that action at this time.
0 commit comments