Skip to content

Commit

Permalink
Fix error and make it work with VS 2017/2015 (#8)
Browse files Browse the repository at this point in the history
* compatible with VS2017 and VS 2015

* make it compatible with VS 2017 and VS 2015, rename to VSTS Status Monitor

* correct tags and description
  • Loading branch information
onlyutkarsh authored Aug 19, 2017
1 parent 5a817fa commit 08be0a2
Show file tree
Hide file tree
Showing 37 changed files with 377 additions and 347 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ build/
bld/
[Bb]in/
[Oo]bj/
.vs/

# Roslyn cache directories
*.ide/
Expand Down
9 changes: 9 additions & 0 deletions VSOStatusInspector.Package/Entities/VSTSStatusResponse.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
namespace VSTSStatusMonitor.Entities
{
public class VSTSStatusResponse
{
public string Status { get; set; }
public string Message { get; set; }
public string Title { get; set; }
}
}
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
namespace VSOStatusInspector {
namespace VSTSStatusMonitor {
public class OptionsChangedEventArgs : System.EventArgs {
public double Interval { get; set; }
}
Expand Down
2 changes: 1 addition & 1 deletion VSOStatusInspector.Package/Guids.cs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

using System;

namespace VSOStatusInspector
namespace VSTSStatusMonitor
{
static class GuidList
{
Expand Down
2 changes: 1 addition & 1 deletion VSOStatusInspector.Package/NativeMethods.cs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
using System;
using System.Runtime.InteropServices;

namespace VSOStatusInspector
namespace VSTSStatusMonitor
{
internal static class NativeMethods
{
Expand Down
4 changes: 2 additions & 2 deletions VSOStatusInspector.Package/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,11 @@
// General Information about an assembly is controlled through the following
// set of attributes. Change these attribute values to modify the information
// associated with an assembly.
[assembly: AssemblyTitle("VSTS Status Inspector")]
[assembly: AssemblyTitle("VSTS Status Monitor")]
[assembly: AssemblyDescription("v1.0.0 Release")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("Utkarsh Shigihalli & Tarun Arora")]
[assembly: AssemblyProduct("VSTS Status Inspector")]
[assembly: AssemblyProduct("VSTS Status Monitor")]
[assembly: AssemblyCopyright("© $YYYY Utkarsh Shigihalli & Tarun Arora")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]
Expand Down
8 changes: 4 additions & 4 deletions VSOStatusInspector.Package/Resources.Designer.cs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Binary file not shown.
Binary file not shown.
210 changes: 0 additions & 210 deletions VSOStatusInspector.Package/VSOStatusInspector.Package.csproj

This file was deleted.

10 changes: 8 additions & 2 deletions VSOStatusInspector.Package/VSPackage.resx
Original file line number Diff line number Diff line change
Expand Up @@ -118,13 +118,19 @@
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<data name="110" xml:space="preserve">
<value>VSTS Status Inspector</value>
<value>VSTS Status Monitor</value>
</data>
<data name="112" xml:space="preserve">
<value>Inspect status of Visual Studio Online inside Visual Studio</value>
<value>Monitor status of Visual Studio Team Services inside Visual Studio</value>
</data>
<assembly alias="System.Windows.Forms" name="System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />
<data name="400" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>Resources\Package.ico;System.Drawing.Icon, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
</data>
<data name="1400" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>Resources\VSTSStatusInspectorPackage.ico;System.Drawing.Icon, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
</data>
<data name="2400" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>Resources\VSTSStatusInspector.ico;System.Drawing.Icon, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
</data>
</root>
Loading

0 comments on commit 08be0a2

Please sign in to comment.