Skip to content

Commit

Permalink
prepare to 19.11.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Slimakanzer committed Nov 1, 2019
1 parent bb5264b commit 0c5b4ff
Show file tree
Hide file tree
Showing 7 changed files with 8 additions and 6 deletions.
2 changes: 1 addition & 1 deletion VSRAD.DebugServer/Logging/GlobalLogger.cs
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ static GlobalLogger()
var assembly = Assembly.GetEntryAssembly();
_executableName = Path.GetFileNameWithoutExtension(assembly.Location);
_assemblyName = assembly.GetName().Name;
_assemblyVersion = assembly.GetName().Version.ToString(2);
_assemblyVersion = assembly.GetName().Version.ToString(3);
}

public static void ServerStarted(CliOptions options)
Expand Down
2 changes: 1 addition & 1 deletion VSRAD.DebugServer/VSRAD.DebugServer.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
<PropertyGroup>
<TrimUnusedDependencies>true</TrimUnusedDependencies>
<LangVersion>7.3</LangVersion>
<Version>5.14</Version>
<Version>19.11.1</Version>
<AssemblyName>RadeonAsmDebugServer</AssemblyName>
<RootNamespace>VSRAD.DebugServer</RootNamespace>
</PropertyGroup>
Expand Down
2 changes: 1 addition & 1 deletion VSRAD.Package/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="ba666db81-7abd-4a75-b906-895d8cc0616e" Version="5.14" Language="en-US" Publisher="Tim Labushev, Ivan Sarzhevskiy, Gleb Larochkin" />
<Identity Id="ba666db81-7abd-4a75-b906-895d8cc0616e" Version="19.11.1" Language="en-US" Publisher="Tim Labushev, Ivan Sarzhevskiy, Gleb Larochkin" />
<DisplayName>Radeon Asm Debugger</DisplayName>
<Description xml:space="preserve">Debugging tools for Radeon Asm projects</Description>
</Metadata>
Expand Down
2 changes: 1 addition & 1 deletion VSRAD.Syntax/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ To build extension you should use one of four project build options:
* `Debug` - debug version with *Radeon asm* support
* `Release` - release version with *Radeon asm* support

> For example, for the `Release` build option, the `RadeonAsmSyntax-4.1.0.vsix` extension installer will be located in the ***path to project location\VSRAD.Syntax\bin\Release*** directory.
> For example, for the `Release` build option, the `RadeonAsmSyntax.vsix` extension installer will be located in the ***path to project location\VSRAD.Syntax\bin\Release*** directory.
## Plugin features

Expand Down
2 changes: 1 addition & 1 deletion VSRAD.Syntax/VSRAD.Syntax.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
<OutputType>Library</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>VSRAD.Syntax</RootNamespace>
<AssemblyName>RadeonAsmSyntax-4.1.0</AssemblyName>
<AssemblyName>RadeonAsmSyntax</AssemblyName>
<TargetFrameworkVersion>v4.8</TargetFrameworkVersion>
<GeneratePkgDefFile>true</GeneratePkgDefFile>
<IncludeAssemblyInVSIXContainer>true</IncludeAssemblyInVSIXContainer>
Expand Down
2 changes: 1 addition & 1 deletion VSRAD.Syntax/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="RadeonAsmSyntax.6e2593e1-ebc7-4985-ada0-654814c0eb34" Version="4.1.0" Language="en-US" Publisher="Gleb Larochkin, Ivan Sarzhevskiy, Tim Labushev" />
<Identity Id="RadeonAsmSyntax.6e2593e1-ebc7-4985-ada0-654814c0eb34" Version="19.11.1" Language="en-US" Publisher="Gleb Larochkin, Ivan Sarzhevskiy, Tim Labushev" />
<DisplayName>Radeon Asm Syntax</DisplayName>
<Description xml:space="preserve">Adds syntax highlighting, code outlining, navigation tools, function list support for Radeon Asm</Description>
</Metadata>
Expand Down
2 changes: 2 additions & 0 deletions release.bat
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@ xcopy /E "VSRAD.DebugServer\bin\release\netcoreapp2.2\win-x64\publish" "Release\
xcopy /E "VSRAD.DebugServer\bin\release\netcoreapp2.2\linux-x64\publish" "Release\DebugServerLinux64\"
:: RadeonAsmDebugger.vsix
copy "VSRAD.Package\bin\Release\RadeonAsmDebugger.vsix" "Release\"
:: RadeonAsmSyntax.vsix
copy "VSRAD.Syntax\bin\Release\RadeonAsmSyntax.vsix" "Release\"
:: Changelog and Readme
copy "CHANGELOG.md" "Release\"
copy "README.md" "Release\"
Expand Down

0 comments on commit 0c5b4ff

Please sign in to comment.