Skip to content
This repository was archived by the owner on Mar 8, 2025. It is now read-only.

Commit 4194b80

Browse files
author
J Burnett
committed
Consolidate common properties
1 parent cd9a6d1 commit 4194b80

3 files changed

Lines changed: 24 additions & 9 deletions

File tree

AMT.LinqExtensions/AMT.LinqExtensions.csproj

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,20 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

3+
<Import Project="../common.props" />
4+
35
<PropertyGroup>
4-
<VersionPrefix>2.2.0</VersionPrefix>
56

67
<AssemblyName>AMT.LinqExtensions</AssemblyName>
78
<AssemblyTitle>AMT LINQ Extensions</AssemblyTitle>
8-
<Company>AltaModa Technologies, LLC</Company>
99

10-
<GenerateAssemblyCompanyAttribute />
11-
<GenerateAssemblyConfigurationAttribute />
1210
<GenerateAssemblyCopyrightAttribute />
1311
<GenerateAssemblyDescriptionAttribute />
1412
<GenerateAssemblyFileVersionAttribute />
1513
<GenerateAssemblyInformationalVersionAttribute />
16-
<GenerateAssemblyProductAttribute />
1714
<GenerateAssemblyTitleAttribute />
1815
<GenerateAssemblyVersionAttribute />
1916
<GenerateNeutralResourcesLanguageAttribute />
2017

21-
<Authors>AltaModaTech</Authors>
22-
<Copyright>AltaModa Technologies, LLC</Copyright>
2318
<Description>A few LINQ Extensions which we find useful, and you may, too.</Description>
2419
<PackageLicenseUrl>http://www.apache.org/licenses/LICENSE-2.0</PackageLicenseUrl>
2520
<PackageProjectUrl>https://github.com/AltaModaTech/LINQExtensions</PackageProjectUrl>

common.props

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
<Project>
2+
3+
<!-- Company, copyright -->
4+
<PropertyGroup>
5+
<Copyright>AltaModa Technologies, LLC</Copyright>
6+
<Company>AltaModa Technologies</Company>
7+
<Authors>AltaModaTech</Authors>
8+
</PropertyGroup>
9+
10+
11+
<!-- Assembly version & attribute controls -->
12+
<PropertyGroup>
13+
<VersionPrefix>2.2.2</VersionPrefix>
14+
15+
<GenerateAssemblyConfigurationAttribute>true</GenerateAssemblyConfigurationAttribute>
16+
<GenerateAssemblyCompanyAttribute>true</GenerateAssemblyCompanyAttribute>
17+
<GenerateAssemblyProductAttribute>true</GenerateAssemblyProductAttribute>
18+
</PropertyGroup>
19+
20+
</Project>

test/test.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

3+
<Import Project="../common.props" />
4+
35
<PropertyGroup>
4-
<Copyright>AltaModa Technologies, LLC</Copyright>
5-
<VersionPrefix>2.2.0</VersionPrefix>
66
<AssemblyName>Test.AMT.LinqExtensions</AssemblyName>
77
<IsPackable>false</IsPackable>
88
</PropertyGroup>

0 commit comments

Comments
 (0)