File tree Expand file tree Collapse file tree 7 files changed +48
-33
lines changed
UmbracoFileSystemProviders.Azure.Installer
UmbracoFileSystemProviders.Azure Expand file tree Collapse file tree 7 files changed +48
-33
lines changed Original file line number Diff line number Diff line change 100
100
101
101
<!-- UPDATE PROJECT ASSEMBLEY VERSION -->
102
102
<Target Name =" UpdateAssemblyInfo" DependsOnTargets =" Clean" >
103
- <FileUpdate Encoding =" ASCII" Files =" $(ProjectDir)\Properties\AssemblyInfo .cs" Regex =" AssemblyVersion\(" .*" \)\]" ReplacementText =" AssemblyVersion(" $(FileVersion)" )]" />
104
- <FileUpdate Encoding =" ASCII" Files =" $(ProjectDir)\Properties\AssemblyInfo .cs" Regex =" AssemblyFileVersion\(" .*" \)\]" ReplacementText =" AssemblyFileVersion(" $(FileVersion)" )]" />
105
- <FileUpdate Encoding =" ASCII" Files =" $(ProjectDir)\Properties\AssemblyInfo .cs" Regex =" AssemblyInformationalVersion\(" .*" \)\]" ReplacementText =" AssemblyInformationalVersion(" $(ProductVersion)" )]" />
103
+ <FileUpdate Encoding =" ASCII" Files =" $(ProjectDir)\Properties\VersionInfo .cs" Regex =" AssemblyVersion\(" .*" \)\]" ReplacementText =" AssemblyVersion(" $(FileVersion)" )]" />
104
+ <FileUpdate Encoding =" ASCII" Files =" $(ProjectDir)\Properties\VersionInfo .cs" Regex =" AssemblyFileVersion\(" .*" \)\]" ReplacementText =" AssemblyFileVersion(" $(FileVersion)" )]" />
105
+ <FileUpdate Encoding =" ASCII" Files =" $(ProjectDir)\Properties\VersionInfo .cs" Regex =" AssemblyInformationalVersion\(" .*" \)\]" ReplacementText =" AssemblyInformationalVersion(" $(ProductVersion)" )]" />
106
106
107
- <FileUpdate Encoding =" ASCII" Files =" $(InstallerProjectDir)\Properties\AssemblyInfo .cs" Regex =" AssemblyVersion\(" .*" \)\]" ReplacementText =" AssemblyVersion(" $(FileVersion)" )]" />
108
- <FileUpdate Encoding =" ASCII" Files =" $(InstallerProjectDir)\Properties\AssemblyInfo .cs" Regex =" AssemblyFileVersion\(" .*" \)\]" ReplacementText =" AssemblyFileVersion(" $(FileVersion)" )]" />
109
- <FileUpdate Encoding =" ASCII" Files =" $(InstallerProjectDir)\Properties\AssemblyInfo .cs" Regex =" AssemblyInformationalVersion\(" .*" \)\]" ReplacementText =" AssemblyInformationalVersion(" $(ProductVersion)" )]" />
107
+ <FileUpdate Encoding =" ASCII" Files =" $(InstallerProjectDir)\Properties\VersionInfo .cs" Regex =" AssemblyVersion\(" .*" \)\]" ReplacementText =" AssemblyVersion(" $(FileVersion)" )]" />
108
+ <FileUpdate Encoding =" ASCII" Files =" $(InstallerProjectDir)\Properties\VersionInfo .cs" Regex =" AssemblyFileVersion\(" .*" \)\]" ReplacementText =" AssemblyFileVersion(" $(FileVersion)" )]" />
109
+ <FileUpdate Encoding =" ASCII" Files =" $(InstallerProjectDir)\Properties\VersionInfo .cs" Regex =" AssemblyInformationalVersion\(" .*" \)\]" ReplacementText =" AssemblyInformationalVersion(" $(ProductVersion)" )]" />
110
110
</Target >
111
111
112
112
<!-- COMPILE -->
Original file line number Diff line number Diff line change 22
22
// The following GUID is for the ID of the typelib if this project is exposed to COM
23
23
[ assembly: Guid ( "f67f3c8f-7b04-4d4f-a1fc-ad588e93afb4" ) ]
24
24
25
- // Version information for an assembly consists of the following four values:
26
- //
27
- // Major Version
28
- // Minor Version
29
- // Build Number
30
- // Revision
31
- //
32
- // You can specify all the values or you can default the Build and Revision Numbers
33
- // by using the '*' as shown below:
34
- // [assembly: AssemblyVersion("1.0.*")]
35
- [ assembly: AssemblyVersion ( "0.5.0.0" ) ]
36
- [ assembly: AssemblyFileVersion ( "0.5.0.0" ) ]
37
- [ assembly: AssemblyInformationalVersion ( "0.5.0-alpha" ) ]
38
-
39
25
[ assembly: InternalsVisibleTo ( "Our.Umbraco.FileSystemProviders.Azure.Tests" ) ]
Original file line number Diff line number Diff line change
1
+ // <copyright file="VersionInfo.cs" company="James Jackson-South">
2
+ // Copyright (c) James Jackson-South. All rights reserved.
3
+ // Licensed under the Apache License, Version 2.0.
4
+ // </copyright>
5
+
6
+ using System . Reflection ;
7
+
8
+ // Version information for an assembly consists of the following four values:
9
+ //
10
+ // Major Version
11
+ // Minor Version
12
+ // Build Number
13
+ // Revision
14
+ //
15
+ // You can specify all the values or you can default the Build and Revision Numbers
16
+ // by using the '*' as shown below:
17
+ // [assembly: AssemblyVersion("0.5.0.10")]
18
+ [ assembly: AssemblyVersion ( "0.5.0.0" ) ]
19
+ [ assembly: AssemblyFileVersion ( "0.5.0.0" ) ]
20
+ [ assembly: AssemblyInformationalVersion ( "0.5.0" ) ]
Original file line number Diff line number Diff line change 262
262
<Compile Include =" Models\Parameter.cs" />
263
263
<Compile Include =" InstallerController.cs" />
264
264
<Compile Include =" PackageActions.cs" />
265
+ <Compile Include =" Properties\VersionInfo.cs" />
265
266
</ItemGroup >
266
267
<ItemGroup >
267
268
<None Include =" app.config" />
Original file line number Diff line number Diff line change 22
22
// The following GUID is for the ID of the typelib if this project is exposed to COM
23
23
[ assembly: Guid ( "5c92a8bd-eaa4-4562-a7e2-213d47d92d73" ) ]
24
24
25
- // Version information for an assembly consists of the following four values:
26
- //
27
- // Major Version
28
- // Minor Version
29
- // Build Number
30
- // Revision
31
- //
32
- // You can specify all the values or you can default the Build and Revision Numbers
33
- // by using the '*' as shown below:
34
- [ assembly: AssemblyVersion ( "0.5.0.0" ) ]
35
- [ assembly: AssemblyFileVersion ( "0.5.0.0" ) ]
36
- [ assembly: AssemblyInformationalVersion ( "0.5.0-alpha" ) ]
37
-
38
25
[ assembly: InternalsVisibleTo ( "Our.Umbraco.FileSystemProviders.Azure.Tests" ) ]
Original file line number Diff line number Diff line change
1
+ // <copyright file="VersionInfo.cs" company="James Jackson-South">
2
+ // Copyright (c) James Jackson-South. All rights reserved.
3
+ // Licensed under the Apache License, Version 2.0.
4
+ // </copyright>
5
+
6
+ using System . Reflection ;
7
+
8
+ // Version information for an assembly consists of the following four values:
9
+ //
10
+ // Major Version
11
+ // Minor Version
12
+ // Build Number
13
+ // Revision
14
+ //
15
+ // You can specify all the values or you can default the Build and Revision Numbers
16
+ // by using the '*' as shown below:
17
+ // [assembly: AssemblyVersion("0.5.0.10")]
18
+ [ assembly: AssemblyVersion ( "0.5.0.0" ) ]
19
+ [ assembly: AssemblyFileVersion ( "0.5.0.0" ) ]
20
+ [ assembly: AssemblyInformationalVersion ( "0.5.0" ) ]
Original file line number Diff line number Diff line change 256
256
<Compile Include =" Helpers\MimeTypeResolver.cs" />
257
257
<Compile Include =" Helpers\WrappedLogHelper.cs" />
258
258
<Compile Include =" Helpers\ILogHelper.cs" />
259
+ <Compile Include =" Properties\VersionInfo.cs" />
259
260
<Compile Include =" VirtualPathProviderController.cs" />
260
261
<Compile Include =" FileSystemVirtualPathProvider.cs" />
261
262
<Compile Include =" FileSystemVirtualFile.cs" />
You can’t perform that action at this time.
0 commit comments