forked from OneGet/NuGetProvider
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathNugetLightProvider.csproj
154 lines (152 loc) · 8.18 KB
/
NugetLightProvider.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
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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="12.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Release</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProjectGuid>{CE99A5EB-84AF-4445-B689-3E1C50F071DF}</ProjectGuid>
<OutputType>Library</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>Microsoft.PackageManagement.NuGetProvider</RootNamespace>
<AssemblyName>Microsoft.PackageManagement.NuGetProvider</AssemblyName>
<FileAlignment>512</FileAlignment>
<SolutionPropsPath Condition="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory), solution.props)) != ''">$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory), solution.props))\solution.props</SolutionPropsPath>
<TargetFrameworkProfile />
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
</PropertyGroup>
<PropertyGroup>
<SignAssembly>true</SignAssembly>
</PropertyGroup>
<PropertyGroup>
<AssemblyOriginatorKeyFile>35MSSharedLib1024.snk</AssemblyOriginatorKeyFile>
</PropertyGroup>
<PropertyGroup>
<DelaySign>true</DelaySign>
</PropertyGroup>
<Import Project="$(SolutionPropsPath)" Condition="$(SolutionPropsPath) != '' AND Exists($(SolutionPropsPath))" />
<PropertyGroup Condition="$(SolutionPropsPath) == '' OR !Exists($(SolutionPropsPath))">
<!-- if this is built standalone, we don't need the solution.props file. -->
<SolutionDir Condition=" '$(SolutionDir)'=='' ">$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildProjectDirectory), PackageProvider.sln))\</SolutionDir>
<SolutionRootDir>$(SolutionDir)</SolutionRootDir>
<!-- Defaults to .Net 4.0 -->
<TargetFrameworkVersion Condition="$(TargetFrameworkVersion) == '' Or $(TargetFrameworkVersion) == '*Undefined*'">v4.0</TargetFrameworkVersion>
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
<OutputPath>$(SolutionRootDir)output\$(Configuration)\bin\</OutputPath>
<BaseIntermediateOutputPath>$(SolutionRootDir)intermediate\$(TargetFrameworkVersion.Replace(".",""))\$(Configuration)\$(AssemblyName)\</BaseIntermediateOutputPath>
<IntermediateOutputPath>$(BaseIntermediateOutputPath)</IntermediateOutputPath>
<DocumentationFile>$(OutputPath)$(AssemblyName).XML</DocumentationFile>
<NoWarn>1591</NoWarn>
<RestorePackages>true</RestorePackages>
<DefineConstants>FRAMEWORK$(TargetFrameworkVersion.Replace(".",""))</DefineConstants>
<OutputRelativePath>output\$(TargetFrameworkVersion.Replace(".",""))\$(Configuration)\bin\</OutputRelativePath>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<DefineConstants>$(DefineConstants);DEBUG;TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<DocumentationFile>output\v40\Debug\bin\Microsoft.PackageManagement.NuGetProvider.xml</DocumentationFile>
<Prefer32Bit>false</Prefer32Bit>
<OutputPath>output\bin\</OutputPath>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
<DefineConstants>TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<DocumentationFile>
</DocumentationFile>
<Prefer32Bit>false</Prefer32Bit>
</PropertyGroup>
<ItemGroup>
<Compile Include="NuGetExtensions.cs" />
<Compile Include="NugetLightConstant.cs" />
<Compile Include="Package\PackageDependencySet.cs" />
<Compile Include="Package\PackageName.cs">
<SubType>Code</SubType>
</Compile>
<Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="Repository\HttpClientPackageRepository.cs" />
<Compile Include="Package\IPackage.cs" />
<Compile Include="Package\IPackageName.cs" />
<Compile Include="Repository\IPackageRepository.cs" />
<Compile Include="Repository\IPackageRepositoryFactory.cs" />
<Compile Include="Repository\LocalPackageRepository.cs" />
<Compile Include="Package\PackageBase.cs" />
<Compile Include="NugetLightClient.cs" />
<Compile Include="Package\PackageDependency.cs" />
<Compile Include="Utility\NuGetPathUtility.cs" />
<Compile Include="Utility\PackageUtility.cs" />
<Compile Include="Package\PackageItem.cs" />
<Compile Include="Repository\PackageRepositoryFactory.cs" />
<Compile Include="PackageSource.cs" />
<Compile Include="NugetLightRequest.cs">
<SubType>Code</SubType>
</Compile>
<Compile Include="..\oneget\src\Microsoft.PackageManagement\Providers\Inbox\Common\Utility\PathUtility.cs" />
<Compile Include="..\oneget\src\Microsoft.PackageManagement\Providers\Inbox\Common\Utility\FileUtility.cs" />
<Compile Include="..\oneget\src\Microsoft.PackageManagement\Providers\Inbox\Common\Utility\XmlUtility.cs" />
<Compile Include="..\oneget\src\Microsoft.PackageManagement\Providers\Inbox\Common\Version\DependencyVersion.cs" />
<Compile Include="..\oneget\src\Microsoft.PackageManagement\Providers\Inbox\Common\Version\SemanticVersion.cs" />
<Compile Include="..\oneget\src\Microsoft.PackageManagement\Providers\Inbox\Common\Version\SemanticVersionTypeConverter.cs" />
<Compile Include="..\oneget\src\Microsoft.PackageManagement\Providers\Inbox\Common\Extensions\Extensions.cs" />
<Compile Include="..\oneget\src\Microsoft.PackageManagement\Utility\Platform\OSInformation.cs" />
<Compile Include="NugetLightProvider.cs" />
<Compile Include="Sdk\Constants.cs" />
<Compile Include="Sdk\ErrorCategory.cs" />
<Compile Include="Sdk\Request.cs" />
<Compile Include="Resources\Messages.Designer.cs">
<AutoGen>True</AutoGen>
<DesignTime>True</DesignTime>
<DependentUpon>Messages.resx</DependentUpon>
</Compile>
<Compile Include="Utility\ProgressTracker.cs" />
</ItemGroup>
<ItemGroup>
<EmbeddedResource Include="Resources\Messages.resx">
<Generator>ResXFileCodeGenerator</Generator>
<LastGenOutput>Messages.Designer.cs</LastGenOutput>
<SubType>Designer</SubType>
</EmbeddedResource>
</ItemGroup>
<ItemGroup>
<Reference Include="Microsoft.CSharp">
</Reference>
<Reference Include="System">
</Reference>
<Reference Include="System.ComponentModel.DataAnnotations" />
<Reference Include="System.IO.Compression" />
<Reference Include="System.IO.Compression.FileSystem" />
<Reference Include="System.Management.Automation, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
<SpecificVersion>False</SpecificVersion>
<HintPath>C:\Windows\Microsoft.NET\assembly\GAC_MSIL\System.Management.Automation\v4.0_3.0.0.0__31bf3856ad364e35\System.Management.Automation.dll</HintPath>
</Reference>
<Reference Include="System.Net.Http" />
<Reference Include="System.Net.Http.Formatting, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL" />
<Reference Include="System.Security" />
<Reference Include="System.Xml" />
<Reference Include="System.Xml.Linq" />
<Reference Include="WindowsBase" />
</ItemGroup>
<ItemGroup />
<ItemGroup>
<None Include="35MSSharedLib1024.snk" />
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
<PropertyGroup>
<PostBuildEvent>:Locate MT.EXE Tool:
set MTEXE=$(ProjectDir)\..\oneget\tools\mt.exe
:Run the tool to add the manifest to the binary.
"%25MTEXE%25" -manifest $(ProjectDir)provider.manifest -outputresource:$(TargetPath);#101</PostBuildEvent>
</PropertyGroup>
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
Other similar extension points exist, see Microsoft.Common.targets.
<Target Name="BeforeBuild">
</Target>
<Target Name="AfterBuild">
</Target>
-->
</Project>