Skip to content
This repository has been archived by the owner on Aug 2, 2023. It is now read-only.

Commit

Permalink
Reapply fixes to allow self-contained publishing (#1833)
Browse files Browse the repository at this point in the history
Correct was to update the property name to reflect
the rename in 0d8bd06.

(Addendum: Added T.T.Channels to this. It's probably
the xunit goo that's bringing in this System.IO.FileSystem
dependency - too bad we don't have a common import file
that's specific to test projects. Then again, msbuild
files are confusing enough without being spread out
all over the tree so maybe not so unfortunate...)
  • Loading branch information
atsushikan authored Oct 9, 2017
1 parent 5470f82 commit 4065a6d
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,11 @@
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="$(TestSdkVersion)" />
<PackageReference Include="xunit" Version="$(XunitVersion)" />
<PackageReference Include="xunit.runner.visualstudio" Version="$(XunitVersion)" />
<PackageReference Include="System.IO.FileSystem" Version="$(CoreFxStableVersion)" />
<PackageReference Include="System.IO.FileSystem.Primitives" Version="$(CoreFxStableVersion)" />
<PackageReference Include="System.Runtime.Extensions" Version="$(CoreFxStableVersion)" />
<PackageReference Include="System.Runtime.Handles" Version="$(CoreFxStableVersion)" />
<PackageReference Include="System.Runtime.InteropServices" Version="$(CoreFxStableVersion)" />
</ItemGroup>
<!-- Project references -->
<ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@
<PackageReference Include="xunit" Version="$(XunitVersion)" />
<PackageReference Include="xunit.runner.visualstudio" Version="$(XunitVersion)" />
<PackageReference Include="xunit.performance.core" Version="$(XunitPerformanceVersion)" />
<PackageReference Include="System.IO.FileSystem" Version="$(CoreFxStableVersion)" />
</ItemGroup>
<!-- Project references -->
<ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="$(TestSdkVersion)" />
<PackageReference Include="xunit" Version="$(XunitVersion)" />
<PackageReference Include="xunit.runner.visualstudio" Version="$(XunitVersion)" />
<PackageReference Include="System.IO.FileSystem" Version="$(CoreFxStableVersion)" />
</ItemGroup>
<!-- Project references -->
<ItemGroup>
Expand All @@ -28,4 +29,4 @@
<ItemGroup>
<Service Include="{82a7f48d-3b50-4b1e-b82e-3ada8210c358}" />
</ItemGroup>
</Project>
</Project>

0 comments on commit 4065a6d

Please sign in to comment.