Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit3a1ddb1

Browse files
committed
The Loc tool does not recognize the F# block comment syntax (* *) for localization.
updating the assemblyinfo files to use the single line comment syntax which it does apparently recognize. (changeset 1386388)
1 parentca3bee0 commit3a1ddb1

File tree

7 files changed

+100
-100
lines changed
  • vsintegration/src/Templates
    • ConsoleProjectTemplates/ProjectTemplates/ConsoleApplication
    • LibraryProjectTemplates/ProjectTemplates/Library
    • NetCore259ProjectTemplates/ProjectTemplates/NETCorePortableLibrary
    • NetCore78ProjectTemplates/ProjectTemplates/NetCorePortableLibrary
    • NetCoreProjectTemplates/ProjectTemplates/NETCorePortableLibrary
    • PortableLibraryProjectTemplates/ProjectTemplates/PortableLibrary
    • SilverlightProjectTemplates/ProjectTemplates/SilverlightLibrary

7 files changed

+100
-100
lines changed

‎vsintegration/src/Templates/ConsoleProjectTemplates/ProjectTemplates/ConsoleApplication/AssemblyInfo.fs‎

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@ open System.Reflection
44
openSystem.Runtime.CompilerServices
55
openSystem.Runtime.InteropServices
66

7-
(* General Information about an assembly is controlled through the following
8-
set of attributes. Change these attribute values to modify the information
9-
associated with an assembly.*)
7+
// General Information about an assembly is controlled through the following
8+
//set of attributes. Change these attribute values to modify the information
9+
//associated with an assembly.
1010
[<assembly: AssemblyTitle("$projectname$")>]
1111
[<assembly: AssemblyDescription("")>]
1212
[<assembly: AssemblyConfiguration("")>]
@@ -16,24 +16,24 @@ associated with an assembly. *)
1616
[<assembly: AssemblyTrademark("")>]
1717
[<assembly: AssemblyCulture("")>]
1818

19-
(* Setting ComVisible to false makes the types in this assembly not visible
20-
to COM components. If you need to access a type in this assembly from
21-
COM, set the ComVisible attribute to true on that type.*)
19+
// Setting ComVisible to false makes the types in this assembly not visible
20+
//to COM components. If you need to access a type in this assembly from
21+
//COM, set the ComVisible attribute to true on that type.
2222
[<assembly: ComVisible(false)>]
2323

2424
// The following GUID is for the ID of the typelib if this project is exposed to COM
2525
[<assembly: Guid("$guid1$")>]
2626

27-
(* Version information for an assembly consists of the following four values:
28-
29-
Major Version
30-
Minor Version
31-
Build Number
32-
Revision
33-
34-
You can specify all the values or you can default the Build and Revision Numbers
35-
by using the '*' as shown below:
36-
[<assembly: AssemblyVersion("1.0.*")>]*)
27+
// Version information for an assembly consists of the following four values:
28+
//
29+
// Major Version
30+
// Minor Version
31+
// Build Number
32+
// Revision
33+
//
34+
//You can specify all the values or you can default the Build and Revision Numbers
35+
//by using the '*' as shown below:
36+
//[<assembly: AssemblyVersion("1.0.*")>]
3737
[<assembly: AssemblyVersion("1.0.0.0")>]
3838
[<assembly: AssemblyFileVersion("1.0.0.0")>]
3939

‎vsintegration/src/Templates/LibraryProjectTemplates/ProjectTemplates/Library/AssemblyInfo.fs‎

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@ open System.Reflection
44
openSystem.Runtime.CompilerServices
55
openSystem.Runtime.InteropServices
66

7-
(* General Information about an assembly is controlled through the following
8-
set of attributes. Change these attribute values to modify the information
9-
associated with an assembly.*)
7+
// General Information about an assembly is controlled through the following
8+
//set of attributes. Change these attribute values to modify the information
9+
//associated with an assembly.
1010
[<assembly: AssemblyTitle("$projectname$")>]
1111
[<assembly: AssemblyDescription("")>]
1212
[<assembly: AssemblyConfiguration("")>]
@@ -16,24 +16,24 @@ associated with an assembly. *)
1616
[<assembly: AssemblyTrademark("")>]
1717
[<assembly: AssemblyCulture("")>]
1818

19-
(* Setting ComVisible to false makes the types in this assembly not visible
20-
to COM components. If you need to access a type in this assembly from
21-
COM, set the ComVisible attribute to true on that type.*)
19+
// Setting ComVisible to false makes the types in this assembly not visible
20+
//to COM components. If you need to access a type in this assembly from
21+
//COM, set the ComVisible attribute to true on that type.
2222
[<assembly: ComVisible(false)>]
2323

2424
// The following GUID is for the ID of the typelib if this project is exposed to COM
2525
[<assembly: Guid("$guid1$")>]
2626

27-
(* Version information for an assembly consists of the following four values:
28-
29-
Major Version
30-
Minor Version
31-
Build Number
32-
Revision
33-
34-
You can specify all the values or you can default the Build and Revision Numbers
35-
by using the '*' as shown below:
36-
[<assembly: AssemblyVersion("1.0.*")>]*)
27+
// Version information for an assembly consists of the following four values:
28+
//
29+
// Major Version
30+
// Minor Version
31+
// Build Number
32+
// Revision
33+
//
34+
//You can specify all the values or you can default the Build and Revision Numbers
35+
//by using the '*' as shown below:
36+
//[<assembly: AssemblyVersion("1.0.*")>]
3737
[<assembly: AssemblyVersion("1.0.0.0")>]
3838
[<assembly: AssemblyFileVersion("1.0.0.0")>]
3939

‎vsintegration/src/Templates/NetCore259ProjectTemplates/ProjectTemplates/NETCorePortableLibrary/AssemblyInfo.fs‎

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@ open System.Reflection
55
openSystem.Runtime.CompilerServices
66
openSystem.Runtime.InteropServices
77

8-
(* General Information about an assembly is controlled through the following
9-
set of attributes. Change these attribute values to modify the information
10-
associated with an assembly.*)
8+
// General Information about an assembly is controlled through the following
9+
//set of attributes. Change these attribute values to modify the information
10+
//associated with an assembly.
1111
[<assembly: AssemblyTitle("$projectname$")>]
1212
[<assembly: AssemblyDescription("")>]
1313
[<assembly: AssemblyConfiguration("")>]
@@ -18,16 +18,16 @@ associated with an assembly. *)
1818
[<assembly: AssemblyCulture("")>]
1919
[<assembly: NeutralResourcesLanguage("en")>]
2020

21-
(* Version information for an assembly consists of the following four values:
22-
23-
Major Version
24-
Minor Version
25-
Build Number
26-
Revision
27-
28-
You can specify all the values or you can default the Build and Revision Numbers
29-
by using the '*' as shown below:
30-
[<assembly: AssemblyVersion("1.0.*")>]*)
21+
// Version information for an assembly consists of the following four values:
22+
//
23+
// Major Version
24+
// Minor Version
25+
// Build Number
26+
// Revision
27+
//
28+
//You can specify all the values or you can default the Build and Revision Numbers
29+
//by using the '*' as shown below:
30+
//[<assembly: AssemblyVersion("1.0.*")>]
3131
[<assembly: AssemblyVersion("1.0.0.0")>]
3232
[<assembly: AssemblyFileVersion("1.0.0.0")>]
3333

‎vsintegration/src/Templates/NetCore78ProjectTemplates/ProjectTemplates/NetCorePortableLibrary/AssemblyInfo.fs‎

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@ open System.Reflection
55
openSystem.Runtime.CompilerServices
66
openSystem.Runtime.InteropServices
77

8-
(* General Information about an assembly is controlled through the following
9-
set of attributes. Change these attribute values to modify the information
10-
associated with an assembly.*)
8+
// General Information about an assembly is controlled through the following
9+
//set of attributes. Change these attribute values to modify the information
10+
//associated with an assembly.
1111
[<assembly: AssemblyTitle("$projectname$")>]
1212
[<assembly: AssemblyDescription("")>]
1313
[<assembly: AssemblyConfiguration("")>]
@@ -18,16 +18,16 @@ associated with an assembly. *)
1818
[<assembly: AssemblyCulture("")>]
1919
[<assembly: NeutralResourcesLanguage("en")>]
2020

21-
(* Version information for an assembly consists of the following four values:
22-
23-
Major Version
24-
Minor Version
25-
Build Number
26-
Revision
27-
28-
You can specify all the values or you can default the Build and Revision Numbers
29-
by using the '*' as shown below:
30-
[<assembly: AssemblyVersion("1.0.*")>]*)
21+
// Version information for an assembly consists of the following four values:
22+
//
23+
// Major Version
24+
// Minor Version
25+
// Build Number
26+
// Revision
27+
//
28+
//You can specify all the values or you can default the Build and Revision Numbers
29+
//by using the '*' as shown below:
30+
//[<assembly: AssemblyVersion("1.0.*")>]
3131
[<assembly: AssemblyVersion("1.0.0.0")>]
3232
[<assembly: AssemblyFileVersion("1.0.0.0")>]
3333

‎vsintegration/src/Templates/NetCoreProjectTemplates/ProjectTemplates/NETCorePortableLibrary/AssemblyInfo.fs‎

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@ open System.Reflection
55
openSystem.Runtime.CompilerServices
66
openSystem.Runtime.InteropServices
77

8-
(* General Information about an assembly is controlled through the following
9-
set of attributes. Change these attribute values to modify the information
10-
associated with an assembly.*)
8+
// General Information about an assembly is controlled through the following
9+
//set of attributes. Change these attribute values to modify the information
10+
//associated with an assembly.
1111
[<assembly: AssemblyTitle("$projectname$")>]
1212
[<assembly: AssemblyDescription("")>]
1313
[<assembly: AssemblyConfiguration("")>]
@@ -18,16 +18,16 @@ associated with an assembly. *)
1818
[<assembly: AssemblyCulture("")>]
1919
[<assembly: NeutralResourcesLanguage("en")>]
2020

21-
(* Version information for an assembly consists of the following four values:
22-
23-
Major Version
24-
Minor Version
25-
Build Number
26-
Revision
27-
28-
You can specify all the values or you can default the Build and Revision Numbers
29-
by using the '*' as shown below:
30-
[<assembly: AssemblyVersion("1.0.*")>]*)
21+
// Version information for an assembly consists of the following four values:
22+
//
23+
// Major Version
24+
// Minor Version
25+
// Build Number
26+
// Revision
27+
//
28+
//You can specify all the values or you can default the Build and Revision Numbers
29+
//by using the '*' as shown below:
30+
//[<assembly: AssemblyVersion("1.0.*")>]
3131
[<assembly: AssemblyVersion("1.0.0.0")>]
3232
[<assembly: AssemblyFileVersion("1.0.0.0")>]
3333

‎vsintegration/src/Templates/PortableLibraryProjectTemplates/ProjectTemplates/PortableLibrary/AssemblyInfo.fs‎

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@ open System.Reflection
55
openSystem.Runtime.CompilerServices
66
openSystem.Runtime.InteropServices
77

8-
(* General Information about an assembly is controlled through the following
9-
set of attributes. Change these attribute values to modify the information
10-
associated with an assembly.*)
8+
// General Information about an assembly is controlled through the following
9+
//set of attributes. Change these attribute values to modify the information
10+
//associated with an assembly.
1111
[<assembly: AssemblyTitle("$projectname$")>]
1212
[<assembly: AssemblyDescription("")>]
1313
[<assembly: AssemblyConfiguration("")>]
@@ -18,16 +18,16 @@ associated with an assembly. *)
1818
[<assembly: AssemblyCulture("")>]
1919
[<assembly: NeutralResourcesLanguage("en")>]
2020

21-
(* Version information for an assembly consists of the following four values:
22-
23-
Major Version
24-
Minor Version
25-
Build Number
26-
Revision
27-
28-
You can specify all the values or you can default the Build and Revision Numbers
29-
by using the '*' as shown below:
30-
[<assembly: AssemblyVersion("1.0.*")>]*)
21+
// Version information for an assembly consists of the following four values:
22+
//
23+
// Major Version
24+
// Minor Version
25+
// Build Number
26+
// Revision
27+
//
28+
//You can specify all the values or you can default the Build and Revision Numbers
29+
//by using the '*' as shown below:
30+
//[<assembly: AssemblyVersion("1.0.*")>]
3131
[<assembly: AssemblyVersion("1.0.0.0")>]
3232
[<assembly: AssemblyFileVersion("1.0.0.0")>]
3333

‎vsintegration/src/Templates/SilverlightProjectTemplates/ProjectTemplates/SilverlightLibrary/AssemblyInfo.fs‎

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@ open System.Reflection
44
openSystem.Runtime.CompilerServices
55
openSystem.Runtime.InteropServices
66

7-
(* General Information about an assembly is controlled through the following
8-
set of attributes. Change these attribute values to modify the information
9-
associated with an assembly.*)
7+
// General Information about an assembly is controlled through the following
8+
//set of attributes. Change these attribute values to modify the information
9+
//associated with an assembly.
1010
[<assembly: AssemblyTitle("$safeprojectname$")>]
1111
[<assembly: AssemblyDescription("")>]
1212
[<assembly: AssemblyConfiguration("")>]
@@ -16,24 +16,24 @@ associated with an assembly. *)
1616
[<assembly: AssemblyTrademark("")>]
1717
[<assembly: AssemblyCulture("")>]
1818

19-
(* Setting ComVisible to false makes the types in this assembly not visible
20-
to COM components. If you need to access a type in this assembly from
21-
COM, set the ComVisible attribute to true on that type.*)
19+
// Setting ComVisible to false makes the types in this assembly not visible
20+
//to COM components. If you need to access a type in this assembly from
21+
//COM, set the ComVisible attribute to true on that type.
2222
[<assembly: ComVisible(false)>]
2323

2424
// The following GUID is for the ID of the typelib if this project is exposed to COM
2525
[<assembly: Guid("$guid1$")>]
2626

27-
(* Version information for an assembly consists of the following four values:
28-
29-
Major Version
30-
Minor Version
31-
Build Number
32-
Revision
33-
34-
You can specify all the values or you can default the Build and Revision Numbers
35-
by using the '*' as shown below:
36-
[<assembly: AssemblyVersion("1.0.*")>]*)
27+
// Version information for an assembly consists of the following four values:
28+
//
29+
// Major Version
30+
// Minor Version
31+
// Build Number
32+
// Revision
33+
//
34+
//You can specify all the values or you can default the Build and Revision Numbers
35+
//by using the '*' as shown below:
36+
//[<assembly: AssemblyVersion("1.0.*")>]
3737
[<assembly: AssemblyVersion("1.0.0.0")>]
3838
[<assembly: AssemblyFileVersion("1.0.0.0")>]
3939

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp