зеркало из https://github.com/DeGsoft/maui-linux.git
37 строки
1.4 KiB
XML
37 строки
1.4 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<AssemblyName>Xamarin.Forms.Build.Tasks</AssemblyName>
|
|
<TargetFramework>netstandard2.0</TargetFramework>
|
|
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
|
|
<CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Mono.Cecil" Version="0.10.0-beta7" />
|
|
<PackageReference Include="System.CodeDom" Version="4.4.0" />
|
|
<PackageReference Include="Microsoft.Build" Version="15.3.409" />
|
|
<PackageReference Include="Microsoft.Build.Framework" Version="15.3.409" />
|
|
<PackageReference Include="Microsoft.Build.Utilities.Core" Version="15.3.409" />
|
|
<PackageReference Include="Microsoft.Build.Tasks.Core" Version="15.3.409" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\Xamarin.Forms.Core\Xamarin.Forms.Core.csproj" />
|
|
<ProjectReference Include="..\Xamarin.Forms.Xaml\Xamarin.Forms.Xaml.csproj" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<Compile Include="..\Xamarin.Forms.Core\Properties\GlobalAssemblyInfo.cs">
|
|
<Link>Properties\GlobalAssemblyInfo.cs</Link>
|
|
</Compile>
|
|
</ItemGroup>
|
|
<Target Name="_CopyToNuspecDir" AfterTargets="Build">
|
|
<ItemGroup>
|
|
<_CopyItems Include="$(TargetDir)*.dll" />
|
|
</ItemGroup>
|
|
<Copy SourceFiles="@(_CopyItems)" DestinationFolder="..\.nuspec\" ContinueOnError="true" Retries="0" />
|
|
</Target>
|
|
|
|
</Project>
|