Skip to content

Commit

Permalink
Added culture to AssemblyInfo
Browse files Browse the repository at this point in the history
  • Loading branch information
madskristensen committed Mar 22, 2016
1 parent 5ef19ac commit d645b7d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion src/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
[assembly: AssemblyProduct(Vsix.Name)]
[assembly: AssemblyCopyright(Vsix.Author)]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]
[assembly: AssemblyCulture(Vsix.Language)]

[assembly: ComVisible(false)]

Expand Down
1 change: 1 addition & 0 deletions src/source.extension.cs
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ static class Vsix
public const string Id = "2d8aa02a-8810-421f-97b9-86efc573fea3";
public const string Name = "Browser Reload on Save";
public const string Description = "A Visual Studio extension for ASP.NET projects that leverages Browser Link to to reload all connected browsers when files are saved in Visual Studio.";
public const string Language = "en-US";
public const string Version = "1.0";
public const string Author = "Mads Kristensen";
public const string Tags = "Browser Link, ASP.NET, Reload, JavaScript";
Expand Down

0 comments on commit d645b7d

Please sign in to comment.