Skip to content

Commit

Permalink
bumped version to 1.7.3.10
Browse files Browse the repository at this point in the history
  • Loading branch information
HJLebbink committed Jan 26, 2017
1 parent fd091de commit 65e4f80
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 6 deletions.
11 changes: 7 additions & 4 deletions VS/CSHARP/asm-dude-vsix/Resources/example_masm2.asm
Original file line number Diff line number Diff line change
@@ -1,18 +1,21 @@

;#region
extrn printf : proc
;#endregion

procedure1 PROTO a, b

global_label1:
xor rcx, rcx

procedure1 PROC a, b
procedure1A PROC a, b
jmp local_label1
local_label1:
call printf

procedure1 ENDP
procedure1A ENDP

procedure2 PROC
call procedure1
call procedure1A
invoke procedure1
jmp local_label1

Expand Down
2 changes: 1 addition & 1 deletion VS/CSHARP/asm-dude-vsix/source.extension.cs
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ static class Vsix
public const string Name = "AsmDude";
public const string Description = "Syntax highlighting, code completion and code folding for assembly (.asm, .cod, .inc) source code.";
public const string Language = "en-US";
public const string Version = "1.7.3.9";
public const string Version = "1.7.3.10";
public const string Author = "Henk-Jan Lebbink";
public const string Tags = "Assembly, Assembler, ASM, Syntax Highlighting, Code Completion, Folding, Label Analysis";
}
Expand Down
2 changes: 1 addition & 1 deletion VS/CSHARP/asm-dude-vsix/source.extension.vsixmanifest
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<PackageManifest Version="2.0.0" xmlns="http://schemas.microsoft.com/developer/vsx-schema/2011" xmlns:d="http://schemas.microsoft.com/developer/vsx-schema-design/2011">
<Metadata>
<Identity Id="c729d6b2-f412-49ed-893d-a8f61f25db98" Version="1.7.3.9" Language="en-US" Publisher="Henk-Jan Lebbink" />
<Identity Id="c729d6b2-f412-49ed-893d-a8f61f25db98" Version="1.7.3.10" Language="en-US" Publisher="Henk-Jan Lebbink" />
<DisplayName>AsmDude</DisplayName>
<Description xml:space="preserve">Syntax highlighting, code completion and code folding for assembly (.asm, .cod, .inc) source code.</Description>
<MoreInfo>https://github.com/HJLebbink/asm-dude</MoreInfo>
Expand Down

0 comments on commit 65e4f80

Please sign in to comment.