Skip to content

Commit f4ae128

Browse files
committed
Changed build path to easily get the Library for specific version of .NET Framework.
1 parent af5ec66 commit f4ae128

2 files changed

Lines changed: 4 additions & 5 deletions

File tree

CrashReporter.NET/CrashReporter.NET.csproj

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,20 +17,20 @@
1717
<DebugSymbols>true</DebugSymbols>
1818
<DebugType>full</DebugType>
1919
<Optimize>false</Optimize>
20-
<OutputPath>bin\Debug\</OutputPath>
20+
<OutputPath>bin\Debug\$(TargetFrameworkVersion)</OutputPath>
2121
<DefineConstants>DEBUG;TRACE</DefineConstants>
2222
<ErrorReport>prompt</ErrorReport>
2323
<WarningLevel>4</WarningLevel>
24-
<DocumentationFile>bin\Debug\CrashReporter.NET.XML</DocumentationFile>
24+
<DocumentationFile>bin\Debug\$(TargetFrameworkVersion)\CrashReporter.NET.XML</DocumentationFile>
2525
</PropertyGroup>
2626
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
2727
<DebugType>pdbonly</DebugType>
2828
<Optimize>true</Optimize>
29-
<OutputPath>bin\Release\</OutputPath>
29+
<OutputPath>bin\Release\$(TargetFrameworkVersion)\</OutputPath>
3030
<DefineConstants>TRACE</DefineConstants>
3131
<ErrorReport>prompt</ErrorReport>
3232
<WarningLevel>4</WarningLevel>
33-
<DocumentationFile>bin\Release\CrashReporter.NET.XML</DocumentationFile>
33+
<DocumentationFile>bin\Release\$(TargetFrameworkVersion)\CrashReporter.NET.XML</DocumentationFile>
3434
</PropertyGroup>
3535
<PropertyGroup>
3636
<SignAssembly>false</SignAssembly>

CrashReporter.NET/HelperMethods.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
using System;
2-
using System.Diagnostics;
32
using System.Runtime.InteropServices;
43
using Microsoft.Win32;
54

0 commit comments

Comments
 (0)