Skip to content

Commit

Permalink
MemAnalyzer 2.5.0.1
Browse files Browse the repository at this point in the history
 - updated to ClrMD 0.9.170626.01 which allows usage with x86 .NET Core.
  • Loading branch information
Alois-xx committed Jul 30, 2017
1 parent d37866d commit 653f275
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 7 deletions.
Binary file modified MemAnalyzer/ExternalBinaries/Microsoft.Diagnostics.Runtime.dll
Binary file not shown.
12 changes: 7 additions & 5 deletions MemAnalyzer/MemAnalyzer.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -75,8 +75,7 @@
</PropertyGroup>
<ItemGroup>
<Reference Include="Microsoft.Diagnostics.Runtime, Version=0.8.31.1, Culture=neutral, processorArchitecture=MSIL">
<SpecificVersion>False</SpecificVersion>
<HintPath>..\packages\Microsoft.Diagnostics.Runtime.Latest.0.8.31.3\lib\net45\Microsoft.Diagnostics.Runtime.dll</HintPath>
<HintPath>..\packages\Microsoft.Diagnostics.Runtime.0.9.170626.01\lib\net40\Microsoft.Diagnostics.Runtime.dll</HintPath>
<Private>True</Private>
</Reference>
<Reference Include="System" />
Expand Down Expand Up @@ -114,7 +113,9 @@
</ItemGroup>
<ItemGroup>
<None Include="App.config" />
<None Include="packages.config" />
<None Include="packages.config">
<SubType>Designer</SubType>
</None>
</ItemGroup>
<ItemGroup>
<Content Include="ExternalBinaries\MemAnalyzerx64.exe" />
Expand All @@ -128,8 +129,9 @@
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
<PropertyGroup>
<PreBuildEvent>copy /Y $(SolutionDir)packages\Microsoft.Diagnostics.Runtime.Latest.0.8.31.3\lib\net45\Microsoft.Diagnostics.Runtime.dll $(ProjectDir)\ExternalBinaries
IF NOT EXIST "$(ProjectDir)ExternalBinaries\$(ProjectName)x64.exe" echo "Dummy Exe to make it buildable" &gt; $(ProjectDir)ExternalBinaries\$(ProjectName)x64.exe
<PreBuildEvent>
copy /Y $(SolutionDir)packages\Microsoft.Diagnostics.Runtime.0.9.170626.01\lib\net40\Microsoft.Diagnostics.Runtime.dll $(ProjectDir)\ExternalBinaries
IF NOT EXIST "$(ProjectDir)ExternalBinaries\$(ProjectName)x64.exe" echo "Dummy Exe to make it buildable" &gt; $(ProjectDir)ExternalBinaries\$(ProjectName)x64.exe
IF "$(PlatformName)" EQU "x64" echo "Dummy Exe to make resulting binary smaller" &gt; $(ProjectDir)ExternalBinaries\$(ProjectName)x64.exe</PreBuildEvent>
</PropertyGroup>
<PropertyGroup>
Expand Down
4 changes: 2 additions & 2 deletions MemAnalyzer/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,6 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("2.5.0.0")]
[assembly: AssemblyFileVersion("2.5.0.0")]
[assembly: AssemblyVersion("2.5.0.1")]
[assembly: AssemblyFileVersion("2.5.0.1")]
[assembly: InternalsVisibleTo("MemAnalyzer_uTest")]
1 change: 1 addition & 0 deletions MemAnalyzer/packages.config
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<packages>
<package id="Microsoft.Diagnostics.Runtime" version="0.9.170626.01" targetFramework="net45" />
<package id="Microsoft.Diagnostics.Runtime.Latest" version="0.8.31.3" targetFramework="net45" />
</packages>

0 comments on commit 653f275

Please sign in to comment.