Skip to content

Commit

Permalink
Updated to v1.8.
Browse files Browse the repository at this point in the history
  • Loading branch information
tyranid committed Apr 30, 2019
1 parent 44954cc commit 60fe58a
Show file tree
Hide file tree
Showing 8 changed files with 11 additions and 205 deletions.
2 changes: 1 addition & 1 deletion OleViewDotNet.Main/COMUtilities.cs
Original file line number Diff line number Diff line change
Expand Up @@ -739,7 +739,7 @@ public static IEnumerable<string> ReadValueNames(this RegistryKey rootKey, strin

public static COMRegistryEntrySource GetSource(this RegistryKey key)
{
using (NtKey native_key = NtKey.FromHandle(key.Handle.DangerousGetHandle()))
using (NtKey native_key = NtKey.FromHandle(key.Handle.DangerousGetHandle(), false))
{
string full_path = native_key.FullPath;
if (full_path.StartsWith(@"\Registry\Machine\", StringComparison.OrdinalIgnoreCase))
Expand Down
12 changes: 1 addition & 11 deletions OleViewDotNet.Main/OleViewDotNet.Main.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@
<Private>True</Private>
</Reference>
<Reference Include="NtApiDotNet, Version=1.0.0.0, Culture=neutral, processorArchitecture=MSIL">
<HintPath>..\packages\NtApiDotNet.1.1.21\lib\net45\NtApiDotNet.dll</HintPath>
<HintPath>..\packages\NtApiDotNet.1.1.22\lib\net45\NtApiDotNet.dll</HintPath>
</Reference>
<Reference Include="System" />
<Reference Include="System.Configuration" />
Expand Down Expand Up @@ -437,19 +437,9 @@
<EmbeddedResource Include="Forms\ObjectInformation.resx">
<DependentUpon>ObjectInformation.cs</DependentUpon>
</EmbeddedResource>
<EmbeddedResource Include="Properties\Resources.resx">
<Generator>ResXFileCodeGenerator</Generator>
<LastGenOutput>Resources.Designer.cs</LastGenOutput>
<SubType>Designer</SubType>
</EmbeddedResource>
<EmbeddedResource Include="Forms\ROTViewer.resx">
<DependentUpon>ROTViewer.cs</DependentUpon>
</EmbeddedResource>
<Compile Include="Properties\Resources.Designer.cs">
<AutoGen>True</AutoGen>
<DependentUpon>Resources.resx</DependentUpon>
<DesignTime>True</DesignTime>
</Compile>
<EmbeddedResource Include="Forms\TypeLibControl.resx">
<DependentUpon>TypeLibControl.cs</DependentUpon>
</EmbeddedResource>
Expand Down
2 changes: 1 addition & 1 deletion OleViewDotNet.Main/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,4 @@

[assembly: AssemblyVersion("1.0.0.0")]
[assembly: AssemblyFileVersion("1.0.0.0")]
[assembly: AssemblyInformationalVersion("1.7")]
[assembly: AssemblyInformationalVersion("1.8")]
63 changes: 0 additions & 63 deletions OleViewDotNet.Main/Properties/Resources.Designer.cs

This file was deleted.

120 changes: 0 additions & 120 deletions OleViewDotNet.Main/Properties/Resources.resx

This file was deleted.

6 changes: 4 additions & 2 deletions OleViewDotNet.PowerShell/OleViewDotNet.PowerShell.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
</PropertyGroup>
<ItemGroup>
<Reference Include="NtApiDotNet, Version=1.0.0.0, Culture=neutral, processorArchitecture=MSIL">
<HintPath>..\packages\NtApiDotNet.1.1.21\lib\net45\NtApiDotNet.dll</HintPath>
<HintPath>..\packages\NtApiDotNet.1.1.22\lib\net45\NtApiDotNet.dll</HintPath>
</Reference>
<Reference Include="System" />
<Reference Include="System.Core" />
Expand Down Expand Up @@ -65,7 +65,9 @@
<None Include="OleViewDotNet.psm1">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Include="packages.config" />
<None Include="packages.config">
<SubType>Designer</SubType>
</None>
<None Include="Startup-Module.ps1">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
Expand Down
9 changes: 3 additions & 6 deletions OleViewDotNet.PowerShell/OleViewDotNet.psd1
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
RootModule = 'OleViewDotNet.psm1'

# Version number of this module.
ModuleVersion = '1.7'
ModuleVersion = '1.8'

# Supported PSEditions
# CompatiblePSEditions = @()
Expand Down Expand Up @@ -88,12 +88,9 @@ PrivateData = @{
ProjectUri = 'https://github.com/tyranid/oleviewdotnet'

# ReleaseNotes of this module
ReleaseNotes = 'v1.7
ReleaseNotes = 'v1.8
----
* Added parsing of activation contexts.
* Added simple auto-save/auto-load functionality for the GUI.
* Added Get-ComProgId function.
* Added source information for inbuilt classes.
* Added basic proxy to interface generation.
'

} # End of PSData hashtable
Expand Down
2 changes: 1 addition & 1 deletion OleViewDotNet.PowerShell/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,4 @@

[assembly: AssemblyVersion("1.0.0.0")]
[assembly: AssemblyFileVersion("1.0.0.0")]
[assembly: AssemblyInformationalVersion("1.7")]
[assembly: AssemblyInformationalVersion("1.8")]

0 comments on commit 60fe58a

Please sign in to comment.