|
1 | 1 | <Project Sdk="Microsoft.NET.Sdk"> |
2 | 2 | <PropertyGroup> |
| 3 | + <!-- Assembly metadata --> |
| 4 | + <AssemblyName>Autofac.Extras.AggregateService</AssemblyName> |
| 5 | + <AssemblyTitle>Autofac.Extras.AggregateService</AssemblyTitle> |
3 | 6 | <Description>Dynamic aggregate service implementation generation for Autofac.</Description> |
| 7 | + <Copyright>Copyright © 2015 Autofac Contributors</Copyright> |
| 8 | + <Authors>Autofac Contributors</Authors> |
| 9 | + <Company>Autofac</Company> |
| 10 | + <Product>Autofac</Product> |
| 11 | + <AssemblyOriginatorKeyFile>../../Autofac.snk</AssemblyOriginatorKeyFile> |
| 12 | + <SignAssembly>true</SignAssembly> |
| 13 | + <NeutralLanguage>en-US</NeutralLanguage> |
| 14 | + <!-- Frameworks and language features --> |
4 | 15 | <TargetFrameworks>net10.0;net8.0;netstandard2.1;netstandard2.0</TargetFrameworks> |
5 | 16 | <LangVersion>latest</LangVersion> |
6 | 17 | <Nullable>enable</Nullable> |
7 | | - <TreatWarningsAsErrors>true</TreatWarningsAsErrors> |
8 | 18 | <GenerateDocumentationFile>true</GenerateDocumentationFile> |
9 | | - <AssemblyName>Autofac.Extras.AggregateService</AssemblyName> |
10 | | - <AssemblyOriginatorKeyFile>../../Autofac.snk</AssemblyOriginatorKeyFile> |
11 | | - <SignAssembly>true</SignAssembly> |
| 19 | + <CodeAnalysisRuleSet>../../build/Source.ruleset</CodeAnalysisRuleSet> |
| 20 | + <EnforceCodeStyleInBuild>true</EnforceCodeStyleInBuild> |
| 21 | + <AnalysisMode>AllEnabledByDefault</AnalysisMode> |
| 22 | + <ImplicitUsings>enable</ImplicitUsings> |
| 23 | + <TreatWarningsAsErrors>true</TreatWarningsAsErrors> |
| 24 | + <!-- Packaging --> |
12 | 25 | <PackageId>Autofac.Extras.AggregateService</PackageId> |
13 | 26 | <PackageTags>autofac;di;ioc;dependencyinjection</PackageTags> |
14 | 27 | <PackageReleaseNotes>Release notes are at https://github.com/autofac/Autofac.Extras.AggregateService/releases</PackageReleaseNotes> |
15 | 28 | <PackageIcon>icon.png</PackageIcon> |
16 | 29 | <PackageProjectUrl>https://autofac.org</PackageProjectUrl> |
17 | 30 | <PackageLicenseExpression>MIT</PackageLicenseExpression> |
| 31 | + <PackageReadmeFile>README.md</PackageReadmeFile> |
18 | 32 | <RepositoryType>git</RepositoryType> |
19 | 33 | <RepositoryUrl>https://github.com/autofac/Autofac.Extras.AggregateService</RepositoryUrl> |
20 | | - <NeutralLanguage>en-US</NeutralLanguage> |
21 | | - <Copyright>Copyright (c) Autofac Project. All rights reserved.</Copyright> |
22 | | - <AnalysisMode>AllEnabledByDefault</AnalysisMode> |
23 | | - <EnforceCodeStyleInBuild>true</EnforceCodeStyleInBuild> |
24 | | - <CodeAnalysisRuleSet>../../build/Source.ruleset</CodeAnalysisRuleSet> |
25 | 34 | <ContinuousIntegrationBuild Condition="'$(CI)' != '' ">true</ContinuousIntegrationBuild> |
26 | 35 | <PublishRepositoryUrl>true</PublishRepositoryUrl> |
27 | 36 | <EmbedAllSources>true</EmbedAllSources> |
28 | | - <AllowedOutputExtensionsInPackageBuildOutputFolder>$(AllowedOutputExtensionsInPackageBuildOutputFolder);.pdb</AllowedOutputExtensionsInPackageBuildOutputFolder> |
29 | | - <Authors>Autofac Contributors</Authors> |
30 | | - <Company>Autofac</Company> |
31 | | - <Product>Autofac</Product> |
| 37 | + <IncludeSymbols>true</IncludeSymbols> |
| 38 | + <SymbolPackageFormat>snupkg</SymbolPackageFormat> |
| 39 | + <!-- OmniSharp/VS Code resource generation --> |
| 40 | + <CoreCompileDependsOn>PrepareResources;$(CompileDependsOn)</CoreCompileDependsOn> |
32 | 41 | </PropertyGroup> |
33 | 42 | <!-- Disable nullability warnings in netstandard2.0 --> |
34 | 43 | <PropertyGroup Condition="'$(TargetFramework)' == 'netstandard2.0'"> |
35 | 44 | <NoWarn>$(NoWarn);8600;8601;8602;8603;8604</NoWarn> |
36 | 45 | </PropertyGroup> |
37 | 46 | <ItemGroup> |
38 | 47 | <None Include="..\..\build\icon.png" Pack="true" PackagePath="\" /> |
| 48 | + <None Include="..\..\README.md" Pack="true" PackagePath="\" /> |
39 | 49 | </ItemGroup> |
40 | 50 | <ItemGroup> |
41 | 51 | <AdditionalFiles Include="../../build/stylecop.json" Link="stylecop.json" /> |
|
54 | 64 | <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> |
55 | 65 | </PackageReference> |
56 | 66 | </ItemGroup> |
| 67 | + <ItemDefinitionGroup> |
| 68 | + <EmbeddedResource> |
| 69 | + <Generator>MSBuild:Compile</Generator> |
| 70 | + <StronglyTypedLanguage>CSharp</StronglyTypedLanguage> |
| 71 | + <StronglyTypedFileName>$(IntermediateOutputPath)%(Filename).Designer.cs</StronglyTypedFileName> |
| 72 | + <StronglyTypedClassName>%(Filename)</StronglyTypedClassName> |
| 73 | + </EmbeddedResource> |
| 74 | + </ItemDefinitionGroup> |
57 | 75 | <ItemGroup> |
58 | | - <!-- Magic embedded resource incantation based on https://github.com/dotnet/msbuild/issues/4751 --> |
59 | 76 | <EmbeddedResource Update="AggregateServicesResources.resx"> |
60 | | - <Generator>ResXFileCodeGenerator</Generator> |
61 | | - <LastGenOutput>AggregateServicesResources.Designer.cs</LastGenOutput> |
62 | | - <StronglyTypedFileName>$(IntermediateOutputPath)/AggregateServicesResources.Designer.cs</StronglyTypedFileName> |
63 | | - <StronglyTypedLanguage>CSharp</StronglyTypedLanguage> |
64 | 77 | <StronglyTypedNamespace>Autofac.Extras.AggregateService</StronglyTypedNamespace> |
65 | | - <StronglyTypedClassName>AggregateServicesResources</StronglyTypedClassName> |
66 | 78 | </EmbeddedResource> |
67 | 79 | </ItemGroup> |
68 | 80 | </Project> |
0 commit comments