-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathHime.Build.Task.csproj
31 lines (28 loc) · 1.13 KB
/
Hime.Build.Task.csproj
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>
<TargetFrameworks>net46;netstandard2.0</TargetFrameworks>
<GeneratePackageOnBuild>false</GeneratePackageOnBuild>
<CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies>
<BuildOutputTargetFolder>tasks</BuildOutputTargetFolder>
</PropertyGroup>
<ItemGroup>
<Compile Remove="test\**" />
<EmbeddedResource Remove="test\**" />
<None Remove="test\**" />
</ItemGroup>
<ItemGroup>
<Content Include="build\Hime.Build.Task.props" PackagePath="build\" />
<Content Include="buildMultiTargeting\Hime.Build.Task.props" PackagePath="buildMultiTargeting\" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Hime.SDK" />
<PackageReference Include="Microsoft.Build.Framework">
<Version>15.1.1012</Version>
</PackageReference>
<PackageReference Include="Microsoft.Build.Utilities.Core">
<Version>15.1.1012</Version>
</PackageReference>
<PackageReference Update="@(PackageReference)" PrivateAssets="All" />
<PackageReference Update="Hime.SDK" Version="3.5.0" />
</ItemGroup>
</Project>