This repository was archived by the owner on Jul 2, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathMerq.VisualStudio.proj
87 lines (75 loc) · 3.82 KB
/
Merq.VisualStudio.proj
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
<?xml version="1.0" encoding="utf-8"?>
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="Merq.props" />
<Import Project="Directory.Build.props" />
<!-- Setup NuGet restore -->
<PropertyGroup>
<!-- Instruct NuGet to perform a NETCore-like restore -->
<TargetFramework>netcore50</TargetFramework>
<!-- Instruct NuGet that we use PackageReference, rather than project.json -->
<RestoreProjectStyle>PackageReference</RestoreProjectStyle>
<!-- Specify a well-known usually ignored directory for the generated targets -->
<RestoreOutputPath>$(MSBuildThisFileDirectory).nuget</RestoreOutputPath>
<Configuration Condition="'$(Configuration)' == ''">Release</Configuration>
</PropertyGroup>
<Import Project="$(RestoreOutputPath)\$(MSBuildProjectFile).nuget.g.props" Condition="Exists('$(RestoreOutputPath)\$(MSBuildProjectFile).nuget.g.props')" />
<!-- Packaging project for Merq -->
<PropertyGroup>
<IsPackagingProject>true</IsPackagingProject>
<IncludeOutputsInPackage>false</IncludeOutputsInPackage>
<IncludeFrameworkReferencesInPackage>false</IncludeFrameworkReferencesInPackage>
<PackageId>Merq.VisualStudio</PackageId>
<Title>Merq.VisualStudio: Command Bus + Event Stream</Title>
<Description>Command Bus and Event Stream implementation installers for Visual Studio Extensibility.</Description>
<Summary>Command Bus and Event Stream implementation installers for Visual Studio Extensibility.</Summary>
<Copyright>Copyright 2016 © Mobile Essentials</Copyright>
<PackageOutputPath>$(Out)</PackageOutputPath>
<PackageOutputPath Condition="'$(PackageOutputPath)' == ''">..\out</PackageOutputPath>
</PropertyGroup>
<ItemGroup>
<PackageFile Include="_._">
<PackagePath>lib\_._</PackagePath>
</PackageFile>
<PackageFile Include="Installers\build\*.*">
<Kind>build</Kind>
</PackageFile>
<PackageFile Condition="'$(Out)' == ''" Include="Vsix\Merq.Vsix\bin\$(Configuration)\Merq*.vsix">
<Kind>tools</Kind>
</PackageFile>
<PackageFile Condition="'$(Out)' != ''" Include="$(Out)\Merq*.vsix">
<Kind>tools</Kind>
</PackageFile>
<PackageFile Include="Vsix\Merq.Vsix\bin\$(Configuration)\extension.vsixmanifest">
<Kind>tools</Kind>
</PackageFile>
</ItemGroup>
<ItemGroup>
<PackageReference Include="MSBuilder" Version="0.2.0" />
<PackageReference Include="MSBuilder.VsixDependency" Version="0.2.7" />
<PackageReference Include="GitInfo" Version="1.1.48" PrivateAssets="All" />
<PackageReference Include="NuGet.Build.Packaging" Version="*" PrivateAssets="All" />
</ItemGroup>
<Import Project="Directory.Build.targets" />
<Target Name="SetPackageVersion" BeforeTargets="GetPackageVersion" DependsOnTargets="GetVersion">
<PropertyGroup>
<PackageVersion>$(Version)</PackageVersion>
</PropertyGroup>
</Target>
<Target Name="GetTargetPath" DependsOnTargets="GetPackageTargetPath" Returns="@(TargetPathWithTargetPlatformMoniker)">
<ItemGroup>
<TargetPathWithTargetPlatformMoniker Include="@(PackageTargetPath)" />
</ItemGroup>
</Target>
<!-- Import NuGet.targets for Restore -->
<PropertyGroup>
<NuGetRestoreTargets Condition="'$(NuGetRestoreTargets)'==''">$(MSBuildExtensionsPath)\..\Common7\IDE\CommonExtensions\Microsoft\NuGet\NuGet.targets</NuGetRestoreTargets>
</PropertyGroup>
<Import Condition="Exists('$(NuGetRestoreTargets)')" Project="$(NuGetRestoreTargets)" />
<!-- NuGet generated targets -->
<Import Project="$(RestoreOutputPath)\$(MSBuildProjectFile).nuget.g.targets" Condition="Exists('$(RestoreOutputPath)\$(MSBuildProjectFile).nuget.g.targets')" />
<!-- Unfortunately, NuGet restore depends on this target for its _GenerateRestoreProjectReferencePaths target -->
<Target Name="_SplitProjectReferencesByFileExistence" />
<Target Name="ResolveReferences" />
<Target Name="BuildOnlySettings" />
<Import Project="Directory.Build.targets" />
</Project>