-
-
Notifications
You must be signed in to change notification settings - Fork 23
Expand file tree
/
Copy pathThisAssembly.AssemblyInfo.csproj
More file actions
44 lines (34 loc) · 1.24 KB
/
ThisAssembly.AssemblyInfo.csproj
File metadata and controls
44 lines (34 loc) · 1.24 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<LangVersion>latest</LangVersion>
<IsRoslynComponent>true</IsRoslynComponent>
<PackBuildOutput>false</PackBuildOutput>
</PropertyGroup>
<PropertyGroup>
<PackageId>ThisAssembly.AssemblyInfo</PackageId>
<Description>
This package generates a static `ThisAssembly.Info` class with public
constants exposing the following attribute values generated by default for SDK style projects:
* AssemblyConfigurationAttribute
* AssemblyCompanyAttribute
* AssemblyTitleAttribute
* AssemblyProductAttribute
* AssemblyVersionAttribute
* AssemblyInformationalVersionAttribute
* AssemblyFileVersionAttribute
If your project includes these attributes by other means, they will still be emitted properly
on the `ThisAssembly.Info` class.
</Description>
</PropertyGroup>
<ItemGroup>
<None Remove="ThisAssembly.AssemblyInfo.targets" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="NuGetizer" Version="1.4.5" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\ThisAssembly.Constants\ThisAssembly.Constants.csproj" />
</ItemGroup>
<Import Project="..\Shared\Shared.projitems" Label="Shared" />
</Project>