Skip to content

Commit

Permalink
cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
HJLebbink committed May 29, 2017
1 parent c2fde13 commit e9a1811
Show file tree
Hide file tree
Showing 9 changed files with 11 additions and 228,138 deletions.
11 changes: 5 additions & 6 deletions VS/CSHARP/generate-data/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -39,17 +39,16 @@ static void Main(string[] args)
/// To create the hmtl, use https://software.intel.com/sites/landingpage/IntrinsicsGuide/#=undefined

string path = IntrinsicsDudeToolsStatic.GetInstallPath() + "Resources" + Path.DirectorySeparatorChar;
//string filename = path + "Intel-Intrinsics-Guide-(11-aug-16).html";
string fileIn = path + "Intel-Intrinsics-Guide-(01-feb-17).html";
//string fileIn = path + "Intel-Intrinsics-Guide-(11-aug-16).html";
//string fileIn = path + "Intel-Intrinsics-Guide-(01-feb-17).html";
string fileIn = path + "Intel-Intrinsics-Guide-(29-may-17).html";
string performance_Filename = path + "Performance.txt";



Console.WriteLine("Converting file " + fileIn + ".");
store.LoadHtml(fileIn);

string fileOut = path + "Intrinsics-Data.xml";
if (false)
if (true)
{
Console.WriteLine("Saving file " + fileOut + ".");
store.SaveXml(fileOut);
Expand All @@ -62,7 +61,7 @@ static void Main(string[] args)
store2.SaveXml(fileOut + ".2.xml"); // to check that that loading and saving results in the same file
}

if (true)
if (false)
{
IDictionary<string, string> performanceData = new SortedDictionary<string, string>();

Expand Down
7 changes: 3 additions & 4 deletions VS/CSHARP/generate-data/generate-data.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -50,15 +50,14 @@
<ItemGroup>
<None Include="App.config" />
</ItemGroup>
<ItemGroup>
<Content Include="Resources\Intel-Intrinsics-Guide-%2801-feb-17%29.html" />
<Content Include="Resources\Intel-Intrinsics-Guide-%2811-aug-16%29.html" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\intrinsics-dude-vsix\intrinsics-dude-vsix.csproj">
<Project>{6bb67359-a10c-4688-9383-e989e971f0ea}</Project>
<Name>intrinsics-dude-vsix</Name>
</ProjectReference>
</ItemGroup>
<ItemGroup>
<Folder Include="Resources\" />
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
</Project>
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ public partial class IntrinsicsDudeOptionsPageUI : UserControl {

public IntrinsicsDudeOptionsPageUI() {
InitializeComponent();
this.version_UI.Content = "Intrinsics Dude v" + typeof(IntrinsicsDudePackage).Assembly.GetName().Version.ToString() + " (" + ApplicationInformation.CompileDate.ToString()+")";
this.version_UI.Content = "Intrinsics Dude v" + typeof(IntrinsicsDudePackage).Assembly.GetName().Version.ToString() + " (" + ApplicationInformation.CompileDate.ToUniversalTime().ToString()+")";
}


Expand Down
55,320 changes: 0 additions & 55,320 deletions VS/CSHARP/intrinsics-dude-vsix/Resources/Intel-Intrinsics-Guide-(01-feb-17).html

This file was deleted.

55,137 changes: 0 additions & 55,137 deletions VS/CSHARP/intrinsics-dude-vsix/Resources/Intel-Intrinsics-Guide-(11-aug-16).html

This file was deleted.

117,662 changes: 0 additions & 117,662 deletions VS/CSHARP/intrinsics-dude-vsix/Resources/Intrinsics-Data-(11-aug-16).xml

This file was deleted.

6 changes: 0 additions & 6 deletions VS/CSHARP/intrinsics-dude-vsix/intrinsics-dude-vsix.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -112,12 +112,6 @@
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
<IncludeInVSIX>true</IncludeInVSIX>
</Content>
<Content Include="Resources\Intel-Intrinsics-Guide-%2801-feb-17%29.html">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
<IncludeInVSIX>true</IncludeInVSIX>
</Content>
<Content Include="Resources\Intel-Intrinsics-Guide-%2811-aug-16%29.html" />
<Content Include="Resources\Intrinsics-Data-%2811-aug-16%29.xml" />
<Content Include="Resources\Intrinsics-Data.xml">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
<IncludeInVSIX>true</IncludeInVSIX>
Expand Down
2 changes: 1 addition & 1 deletion VS/CSHARP/intrinsics-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 = "IntrinsicsDude";
public const string Description = "Improved Statement Completion, Quickinfo Tooltips and Signature Help for Compiler Intrinsics in Visual Studio";
public const string Language = "en-US";
public const string Version = "1.1.3.2";
public const string Version = "1.1.3.3";
public const string Author = "Henk-Jan Lebbink";
public const string Tags = "Compiler Intrinsics, Statement Completion, Quickinfo Tooltips, Signature Help, AVX2, AVX512";
}
Expand Down
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="5BC76C2B-A941-40D2-9EB4-F0DB92DD7C06" Version="1.1.3.2" Language="en-US" Publisher="Henk-Jan Lebbink" />
<Identity Id="5BC76C2B-A941-40D2-9EB4-F0DB92DD7C06" Version="1.1.3.3" Language="en-US" Publisher="Henk-Jan Lebbink" />
<DisplayName>Intrinsics Dude</DisplayName>
<Description xml:space="preserve">Improved Statement Completion, Quickinfo Tooltips and Signature Help for Compiler Intrinsics in Visual Studio</Description>
<MoreInfo>https://github.com/HJLebbink/intrinsics-dude</MoreInfo>
Expand Down

0 comments on commit e9a1811

Please sign in to comment.