forked from PeterWaher/IoTGateway
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Waher.Utility.Install.csproj
40 lines (34 loc) · 1.94 KB
/
Waher.Utility.Install.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
32
33
34
35
36
37
38
39
40
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>netcoreapp2.0</TargetFramework>
<RuntimeIdentifiers>win-x86;win-x64;win-arm;win-arm64</RuntimeIdentifiers>
<Authors>Peter Waher</Authors>
<Company>Waher Data AB</Company>
<Product>Waher.IoTGateway</Product>
<Description>Command-line tool that helps you install pluggable modules into the IoT Gateway.</Description>
<Copyright>Copyright © Waher Data AB 2017. All rights reserved.</Copyright>
<PackageLicenseUrl>https://github.com/PeterWaher/IoTGateway#license</PackageLicenseUrl>
<PackageProjectUrl>https://github.com/PeterWaher/IoTGateway/tree/master/Waher.IoTGateway</PackageProjectUrl>
<PackageIconUrl>https://github.com/PeterWaher/IoTGateway/blob/master/Images/Icon.ico?raw=true</PackageIconUrl>
<RepositoryUrl>https://github.com/PeterWaher/IoTGateway</RepositoryUrl>
<RepositoryType>GitHub</RepositoryType>
<PackageTags />
<NeutralLanguage>English</NeutralLanguage>
</PropertyGroup>
<ItemGroup>
<None Remove="Schema\Manifest.xsd" />
</ItemGroup>
<ItemGroup>
<EmbeddedResource Include="Schema\Manifest.xsd" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\Content\Waher.Content.Xml\Waher.Content.Xml.csproj" />
<ProjectReference Include="..\..\Content\Waher.Content.Xsl\Waher.Content.Xsl.csproj" />
<ProjectReference Include="..\..\Content\Waher.Content\Waher.Content.csproj" />
<ProjectReference Include="..\..\Events\Waher.Events.Console\Waher.Events.Console.csproj" />
</ItemGroup>
<Target Name="PostBuild" AfterTargets="PostBuildEvent">
<Exec Command="if not exist "$(ProjectDir)obj\$(ConfigurationName)\netcoreapp2.0\win-x86" md "$(ProjectDir)obj\$(ConfigurationName)\netcoreapp2.0\win-x86"
copy "$(TargetPath)" "$(ProjectDir)obj\$(ConfigurationName)\netcoreapp2.0\win-x86"
" />
</Target>
</Project>