Skip to content

Commit a654a2f

Browse files
committedMar 9, 2018
Install Microsoft.VisualStudio.Threading 15.6.46
1 parent a6094bc commit a654a2f

File tree

80 files changed

+775
-2
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

80 files changed

+775
-2
lines changed
 

‎GitCommands/GitCommands.csproj

+18-1
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,14 @@
6262
<DocumentationFile>bin\Release\GitCommands.xml</DocumentationFile>
6363
</PropertyGroup>
6464
<ItemGroup>
65+
<Reference Include="Microsoft.VisualStudio.Threading, Version=15.6.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
66+
<HintPath>..\packages\Microsoft.VisualStudio.Threading.15.6.46\lib\net46\Microsoft.VisualStudio.Threading.dll</HintPath>
67+
<Private>True</Private>
68+
</Reference>
69+
<Reference Include="Microsoft.VisualStudio.Validation, Version=15.3.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
70+
<HintPath>..\packages\Microsoft.VisualStudio.Validation.15.3.15\lib\net45\Microsoft.VisualStudio.Validation.dll</HintPath>
71+
<Private>True</Private>
72+
</Reference>
6573
<Reference Include="SmartFormat, Version=2.0.0.0, Culture=neutral, PublicKeyToken=568866805651201f, processorArchitecture=MSIL">
6674
<HintPath>..\packages\SmartFormat.NET.2.0.0.0\lib\net45\SmartFormat.dll</HintPath>
6775
<Private>True</Private>
@@ -78,6 +86,7 @@
7886
<Reference Include="System.Runtime.Serialization" />
7987
<Reference Include="System.Windows.Forms" />
8088
<Reference Include="System.Xml" />
89+
<Reference Include="WindowsBase" />
8190
</ItemGroup>
8291
<ItemGroup>
8392
<Compile Include="..\CommonAssemblyInfo.cs">
@@ -244,8 +253,16 @@
244253
</BootstrapperPackage>
245254
</ItemGroup>
246255
<ItemGroup>
256+
<Analyzer Include="..\packages\Microsoft.VisualStudio.Threading.Analyzers.15.6.46\analyzers\cs\Microsoft.VisualStudio.Threading.Analyzers.dll" />
247257
<Analyzer Include="..\packages\StyleCop.Analyzers.1.1.0-beta006\analyzers\dotnet\cs\StyleCop.Analyzers.CodeFixes.dll" />
248258
<Analyzer Include="..\packages\StyleCop.Analyzers.1.1.0-beta006\analyzers\dotnet\cs\StyleCop.Analyzers.dll" />
249259
</ItemGroup>
250260
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
251-
</Project>
261+
<Import Project="..\packages\Microsoft.VisualStudio.Threading.Analyzers.15.6.46\build\Microsoft.VisualStudio.Threading.Analyzers.targets" Condition="Exists('..\packages\Microsoft.VisualStudio.Threading.Analyzers.15.6.46\build\Microsoft.VisualStudio.Threading.Analyzers.targets')" />
262+
<Target Name="EnsureNuGetPackageBuildImports" BeforeTargets="PrepareForBuild">
263+
<PropertyGroup>
264+
<ErrorText>This project references NuGet package(s) that are missing on this computer. Use NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}.</ErrorText>
265+
</PropertyGroup>
266+
<Error Condition="!Exists('..\packages\Microsoft.VisualStudio.Threading.Analyzers.15.6.46\build\Microsoft.VisualStudio.Threading.Analyzers.targets')" Text="$([System.String]::Format('$(ErrorText)', '..\packages\Microsoft.VisualStudio.Threading.Analyzers.15.6.46\build\Microsoft.VisualStudio.Threading.Analyzers.targets'))" />
267+
</Target>
268+
</Project>

‎GitCommands/packages.config

+3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<packages>
3+
<package id="Microsoft.VisualStudio.Threading" version="15.6.46" targetFramework="net461" />
4+
<package id="Microsoft.VisualStudio.Threading.Analyzers" version="15.6.46" targetFramework="net461" />
5+
<package id="Microsoft.VisualStudio.Validation" version="15.3.15" targetFramework="net461" />
36
<package id="SmartFormat.NET" version="2.0.0.0" targetFramework="net461" />
47
<package id="StyleCop.Analyzers" version="1.1.0-beta006" targetFramework="net461" developmentDependency="true" />
58
<package id="System.IO.Abstractions" version="2.0.0.144" targetFramework="net461" />

0 commit comments

Comments
 (0)
Please sign in to comment.