-
-
Notifications
You must be signed in to change notification settings - Fork 401
Expand file tree
/
Copy pathCsla.Generator.AutoImplementProperties.CSharp.csproj
More file actions
54 lines (52 loc) · 3.23 KB
/
Csla.Generator.AutoImplementProperties.CSharp.csproj
File metadata and controls
54 lines (52 loc) · 3.23 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
<Project Sdk="Microsoft.NET.Sdk">
<Import Project="..\..\..\..\Directory.Package.props" />
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<IsRoslynComponent>true</IsRoslynComponent>
<IncludeBuildOutput>false</IncludeBuildOutput>
<GenerateAssemblyTitleAttribute>false</GenerateAssemblyTitleAttribute>
<GenerateAssemblyDescriptionAttribute>false</GenerateAssemblyDescriptionAttribute>
<GenerateAssemblyConfigurationAttribute>false</GenerateAssemblyConfigurationAttribute>
<GenerateAssemblyCompanyAttribute>false</GenerateAssemblyCompanyAttribute>
<GenerateAssemblyProductAttribute>false</GenerateAssemblyProductAttribute>
<GenerateAssemblyCopyrightAttribute>false</GenerateAssemblyCopyrightAttribute>
<GenerateAssemblyVersionAttribute>false</GenerateAssemblyVersionAttribute>
<GenerateAssemblyFileVersionAttribute>false</GenerateAssemblyFileVersionAttribute>
<EnforceExtendedAnalyzerRules>true</EnforceExtendedAnalyzerRules>
<BaseOutputPath>..\..\..\..\..\Bin</BaseOutputPath>
<OutputPath>..\..\..\..\..\bin\packages\</OutputPath>
<AssemblyName>Csla.Generator.AutoImplementProperties.CSharp</AssemblyName>
<RootNamespace>Csla.Generator.AutoImplementProperties.CSharp</RootNamespace>
<PackageId>Csla.Generator.AutoImplementProperties.CSharp</PackageId>
<Description>CSLA .NET Generator AutoImplementProperties for CSharp</Description>
<SignAssembly>true</SignAssembly>
<GenerateDocumentationFile>True</GenerateDocumentationFile>
<Title>CSLA .NET Generators</Title>
<PackageTags>CSLA;Roslyn;Generator</PackageTags>
<!-- Add these properties for correct NuGet consumption -->
<IsPackable>true</IsPackable>
<DevelopmentDependency>false</DevelopmentDependency>
<SuppressDependenciesWhenPacking>true</SuppressDependenciesWhenPacking>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Bcl.HashCode" Version="6.0.0" GeneratePathProperty="true" />
<None Include="$(PkgMicrosoft_Bcl_HashCode)\lib\netstandard2.0\Microsoft.Bcl.HashCode.dll" CopyToOutputDirectory="PreserveNewest" />
<PackageReference Include="Microsoft.CodeAnalysis.Common" Version="4.9.2" PrivateAssets="all" />
<PackageReference Include="Microsoft.CodeAnalysis.CSharp" Version="4.9.2" PrivateAssets="all" />
</ItemGroup>
<ItemGroup>
<None Include="$(OutputPath)\$(AssemblyName).dll" Pack="true" PackagePath="analyzers/dotnet/cs" Visible="false" />
<None Include="$(OutputPath)\Csla.Generator.AutoImplementProperties.Attributes.CSharp.dll" Pack="true" PackagePath="lib\netstandard2.0" Visible="true" />
<!-- Include dependencies needed by the generator at compile time -->
<None Include="$(OutputPath)\Microsoft.Bcl.HashCode.dll" Pack="true" PackagePath="analyzers/dotnet/cs" Visible="false" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Csla.Generator.AutoImplementProperties.Attributes.CSharp\Csla.Generator.AutoImplementProperties.Attributes.CSharp.csproj" PrivateAssets="All" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Polyfill" Version="8.9.0">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
</PackageReference>
</ItemGroup>
</Project>