-
-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathAutoLoggerMessageGenerator.Pack.csproj
More file actions
38 lines (32 loc) · 2.01 KB
/
AutoLoggerMessageGenerator.Pack.csproj
File metadata and controls
38 lines (32 loc) · 2.01 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<RoslynApiVersion>4.11.0</RoslynApiVersion>
<IsPackable>true</IsPackable>
<RootNamespace>AutoLoggerMessageGenerator</RootNamespace>
</PropertyGroup>
<Import Project="AutoLoggerMessageGenerator.Build.targets" />
<PropertyGroup>
<DefineConstants>$(DefineConstants);JETBRAINS_ANNOTATIONS</DefineConstants>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="AutoLoggerMessageGenerator.Roslyn4_8.csproj" PrivateAssets="All" ReferenceOutputAssembly="false" />
<ProjectReference Include="AutoLoggerMessageGenerator.Roslyn4_11.csproj" PrivateAssets="All" ReferenceOutputAssembly="false" />
<ProjectReference Include="AutoLoggerMessageGenerator.Roslyn4_14.csproj" PrivateAssets="All" ReferenceOutputAssembly="false" />
</ItemGroup>
<ItemGroup>
<Compile Remove="**\*.cs" />
<None Include="$(OutputPath)\..\..\AutoLoggerMessageGenerator.Roslyn4_8\$(ArtifactsPivots)\$(AssemblyName).dll"
Pack="true" PackagePath="analyzers/dotnet/roslyn4.8/cs" Visible="false" />
<None Include="$(OutputPath)\..\..\AutoLoggerMessageGenerator.Roslyn4_11\$(ArtifactsPivots)\$(AssemblyName).dll"
Pack="true" PackagePath="analyzers/dotnet/roslyn4.11/cs" Visible="false" />
<None Include="$(OutputPath)\..\..\AutoLoggerMessageGenerator.Roslyn4_14\$(ArtifactsPivots)\$(AssemblyName).dll"
Pack="true" PackagePath="analyzers/dotnet/roslyn4.14/cs" Visible="false" />
<None Include="$(OutputPath)\AutoLoggerMessageGenerator.BuildOutput.dll" Pack="true" PackagePath="lib\netstandard2.0" Visible="false" />
</ItemGroup>
<ItemGroup>
<None Include="AutoLoggerMessageGenerator.props" Pack="true" PackagePath="build/stbychkov.AutoLoggerMessage.props"/>
<None Include="AutoLoggerMessageGenerator.targets" Pack="true" PackagePath="build/stbychkov.AutoLoggerMessage.targets"/>
<None Include="../../README.md" Pack="true" PackagePath="" />
<None Include="Assets\icon.jpg" Pack="true" PackagePath="" />
</ItemGroup>
</Project>