-
-
Notifications
You must be signed in to change notification settings - Fork 28
Expand file tree
/
Copy pathTfsCmdlets.SourceGenerators.csproj
More file actions
23 lines (19 loc) · 987 Bytes
/
TfsCmdlets.SourceGenerators.csproj
File metadata and controls
23 lines (19 loc) · 987 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<IsRoslynComponent>true</IsRoslynComponent>
<LangVersion>11.0</LangVersion>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.CodeAnalysis.CSharp" Version="4.2.0" PrivateAssets="all" />
<PackageReference Include="Microsoft.CodeAnalysis.CSharp.Workspaces" Version="4.2.0" PrivateAssets="all" />
<PackageReference Include="Microsoft.CodeAnalysis.Analyzers" Version="3.3.3" PrivateAssets="all" />
<PackageReference Include="Microsoft.CodeAnalysis.Workspaces.Common" Version="4.2.0" />
<!--<PackageReference Include="Microsoft.TeamFoundationServer.ExtendedClient" Version="16.206.0-preview" />-->
</ItemGroup>
<ItemGroup>
<AssemblyAttribute Include="System.Runtime.CompilerServices.InternalsVisibleToAttribute">
<_Parameter1>TfsCmdlets.Tests.UnitTests</_Parameter1>
</AssemblyAttribute>
</ItemGroup>
</Project>