-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathNetcorext.Extensions.Linq.csproj
More file actions
31 lines (28 loc) · 1.49 KB
/
Netcorext.Extensions.Linq.csproj
File metadata and controls
31 lines (28 loc) · 1.49 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<LangVersion>latest</LangVersion>
<VersionMajor>1</VersionMajor>
<VersionMinor>0</VersionMinor>
<VersionPatch>0</VersionPatch>
<VersionPrefix>$(VersionMajor).$(VersionMinor).$(VersionPatch)</VersionPrefix>
<VersionSuffix>$(VersionSuffix)</VersionSuffix>
<FileVersion>$(VersionMajor).$([System.DateTime]::UtcNow.ToString(yy)).$([System.DateTime]::UtcNow.ToString(MMdd)).$([System.DateTime]::UtcNow.ToString(HHmm))</FileVersion>
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<TargetsForTfmSpecificBuildOutput>$(TargetsForTfmSpecificBuildOutput);IncludeProjectReferences</TargetsForTfmSpecificBuildOutput>
<Authors>Aren Chen</Authors>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageProjectUrl>https://github.com/arenchen/Netcorext.Extensions.Linq</PackageProjectUrl>
<RepositoryUrl>https://github.com/arenchen/Netcorext.Extensions.Linq.git</RepositoryUrl>
<Description>Extend LINQ Methods</Description>
</PropertyGroup>
<Target Name="IncludeProjectReferences" DependsOnTargets="ResolveReferences">
<ItemGroup>
<IncludeBuildOutput/>
<BuildOutputInPackage Include="@(ReferenceCopyLocalPaths->WithMetadataValue('ReferenceSourceTarget', 'ProjectReference'))"/>
</ItemGroup>
</Target>
</Project>