-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathMSBuild.AdditionalTasks.csproj
More file actions
49 lines (39 loc) · 1.76 KB
/
MSBuild.AdditionalTasks.csproj
File metadata and controls
49 lines (39 loc) · 1.76 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<LangVersion>latest</LangVersion>
<_Year>$([System.DateTime]::get_Now().get_Year())</_Year>
<_Copyright>Copyright © 2019-$(_Year) Andreas Willich</_Copyright>
</PropertyGroup>
<Import Project="$(SolutionDir)/build/macos.props" />
<ItemGroup>
<PackageReference Include="Nerdbank.GitVersioning" Version="2.1.65" PrivateAssets="all" />
</ItemGroup>
<PropertyGroup>
<Authors>Andreas Willich</Authors>
<Company></Company>
<Product />
<Description></Description>
<Copyright>$(_Copyright)</Copyright>
<PackageLicenseFile>LICENSE</PackageLicenseFile>
</PropertyGroup>
<PropertyGroup>
<TargetFrameworks>netcoreapp2.0;net471</TargetFrameworks>
<NoPackageAnalysis>true</NoPackageAnalysis>
<BuildOutputTargetFolder>tasks</BuildOutputTargetFolder>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<PackageOutputPath>$(SolutionDir)/../drop/$(Configuration)</PackageOutputPath>
</PropertyGroup>
<ItemGroup>
<None Include="$(SolutionDir)/../LICENSE" Pack="true" PackagePath="" />
<Content Include="build/*.*" PackagePath="build\" />
<Content Include="Tasks/**/*.props" PackagePath="build\" />
<Content Include="Tasks/**/*.tasks" PackagePath="build\" />
<Content Include="Tasks/**/*.targets" PackagePath="build\" />
<Content Include="buildMultiTargeting\*.props" PackagePath="buildMultiTargeting\" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Build.Framework" Version="15.8.166" />
<PackageReference Include="Microsoft.Build.Utilities.Core" Version="15.8.166" />
<PackageReference Update="@(PackageReference)" PrivateAssets="All" />
</ItemGroup>
</Project>