Commit 61baa8c4 authored by Brickner_cp's avatar Brickner_cp

1. Usage of $(TargetDir) instead of $(OutDir) in PcapDotNet.Analysis post build event.

2. Auto creation of ...\PcapDotNet\3rdParty\PcapDotNet.Analysis folder.
3. Upgraded the reference of the Microsoft.VisualStudio.QualityTools.UnitTestFramework to version 10.
parent 48876762
......@@ -80,7 +80,8 @@
<PreBuildEvent>if not exist "$(SolutionDir)..\..\PcapDotNet\src\PcapDotNet.snk" ("%25PROGRAMFILES%25\Microsoft SDKs\Windows\v6.0A\bin\sn.exe" -k "$(SolutionDir)..\..\PcapDotNet\src\PcapDotNet.snk")</PreBuildEvent>
</PropertyGroup>
<PropertyGroup>
<PostBuildEvent>copy "$(OutDir)$(TargetName).XML" $(SolutionDir)..\..\PcapDotNet\3rdParty\PcapDotNet.Analysis\</PostBuildEvent>
<PostBuildEvent>if not exist "$(SolutionDir)..\..\PcapDotNet\3rdParty\PcapDotNet.Analysis\" (mkdir "$(SolutionDir)..\..\PcapDotNet\3rdParty\PcapDotNet.Analysis\")
copy "$(TargetDir)$(TargetName).XML" $(SolutionDir)..\..\PcapDotNet\3rdParty\PcapDotNet.Analysis\</PostBuildEvent>
</PropertyGroup>
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
Other similar extension points exist, see Microsoft.Common.targets.
......
......@@ -57,7 +57,7 @@
<CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet>
</PropertyGroup>
<ItemGroup>
<Reference Include="Microsoft.VisualStudio.QualityTools.UnitTestFramework, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" />
<Reference Include="Microsoft.VisualStudio.QualityTools.UnitTestFramework, Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" />
<Reference Include="System" />
<Reference Include="System.Core">
<RequiredTargetFramework>3.5</RequiredTargetFramework>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment