mirror of
https://github.com/ElectronNET/Electron.NET.git
synced 2026-02-13 13:44:57 +00:00
37 lines
948 B
XML
37 lines
948 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<Import Project="..\common.props" />
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>netstandard2.0</TargetFramework>
|
|
<IsPackable>False</IsPackable>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Microsoft.Build.Utilities.Core" Version="17.3.2" />
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
<_DllTargetPath>$(MSBuildThisFileDirectory)\..\ElectronNET\build</_DllTargetPath>
|
|
|
|
</PropertyGroup>
|
|
|
|
<Target BeforeTargets="AfterBuild" Name="CopyToBuildFolder">
|
|
|
|
<ItemGroup>
|
|
<OutputFiles Include="$(OutDir)**\*.dll"></OutputFiles>
|
|
</ItemGroup>
|
|
|
|
<Message Text="Copy ElectronNET.Build.dll to destination: $(_DllTargetPath)" Importance="high"/>
|
|
|
|
<Copy SourceFiles="@(OutputFiles)"
|
|
DestinationFolder="$(_DllTargetPath)\%(RecursiveDir)"
|
|
OverwriteReadOnlyFiles="true"></Copy>
|
|
|
|
</Target>
|
|
|
|
</Project>
|