Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code | Sign in
(911)

Delta Between Two Patch Sets: Tools/Google.Apis.NuGet.Publisher/Google.Apis.NuGet.Publisher/Google.Apis.NuGet.Publisher.csproj

Issue 12662047: Issue 376: Generate NuGet pacakges for generated APIs (Closed) Base URL: https://google-api-dotnet-client.googlecode.com/hg/
Left Patch Set: Improving the publisher (it supports creating nupkg and publishing to NuGet repository) Created 10 years, 7 months ago
Right Patch Set: David final comments Created 10 years, 7 months ago
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments. Please Sign in to add in-line comments.
Jump to:
Left: Side by side diff | Download
Right: Side by side diff | Download
LEFTRIGHT
1 <?xml version="1.0" encoding="utf-8"?> 1 <?xml version="1.0" encoding="utf-8"?>
2 <Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microso ft.com/developer/msbuild/2003"> 2 <Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microso ft.com/developer/msbuild/2003">
3 <Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Com mon.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Mi crosoft.Common.props')" /> 3 <Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Com mon.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Mi crosoft.Common.props')" />
4 <PropertyGroup> 4 <PropertyGroup>
5 <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> 5 <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
6 <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> 6 <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
7 <ProjectGuid>{169385A5-0122-4BDD-BC34-73B6B399F781}</ProjectGuid> 7 <ProjectGuid>{169385A5-0122-4BDD-BC34-73B6B399F781}</ProjectGuid>
8 <OutputType>Exe</OutputType> 8 <OutputType>Exe</OutputType>
9 <AppDesignerFolder>Properties</AppDesignerFolder> 9 <AppDesignerFolder>Properties</AppDesignerFolder>
10 <RootNamespace>Google.Apis.NuGet.Publisher</RootNamespace> 10 <RootNamespace>Google.Apis.NuGet.Publisher</RootNamespace>
11 <AssemblyName>Google.Apis.NuGet.Publisher</AssemblyName> 11 <AssemblyName>Google.Apis.NuGet.Publisher</AssemblyName>
12 <TargetFrameworkVersion>v4.5</TargetFrameworkVersion> 12 <TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
13 <FileAlignment>512</FileAlignment> 13 <FileAlignment>512</FileAlignment>
14 <SolutionDir Condition="$(SolutionDir) == '' Or $(SolutionDir) == '*Undefine d*'">..\</SolutionDir> 14 <SolutionDir Condition="$(SolutionDir) == '' Or $(SolutionDir) == '*Undefine d*'">..\</SolutionDir>
15 <RestorePackages>true</RestorePackages> 15 <RestorePackages>true</RestorePackages>
16 </PropertyGroup> 16 </PropertyGroup>
17 <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> 17 <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
18 <PlatformTarget>AnyCPU</PlatformTarget> 18 <PlatformTarget>AnyCPU</PlatformTarget>
19 <DebugSymbols>true</DebugSymbols> 19 <DebugSymbols>true</DebugSymbols>
20 <DebugType>full</DebugType> 20 <DebugType>full</DebugType>
21 <Optimize>false</Optimize> 21 <Optimize>false</Optimize>
22 <OutputPath>bin\Debug\</OutputPath> 22 <OutputPath>bin\Debug\</OutputPath>
23 <DefineConstants>DEBUG;TRACE</DefineConstants> 23 <DefineConstants>DEBUG;TRACE</DefineConstants>
24 <ErrorReport>prompt</ErrorReport> 24 <ErrorReport>prompt</ErrorReport>
25 <WarningLevel>4</WarningLevel> 25 <WarningLevel>4</WarningLevel>
26 <DocumentationFile>Google.Apis.NuGet.Publisher.xml</DocumentationFile>
26 </PropertyGroup> 27 </PropertyGroup>
27 <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' "> 28 <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
28 <PlatformTarget>AnyCPU</PlatformTarget> 29 <PlatformTarget>AnyCPU</PlatformTarget>
29 <DebugType>pdbonly</DebugType> 30 <DebugType>pdbonly</DebugType>
30 <Optimize>true</Optimize> 31 <Optimize>true</Optimize>
31 <OutputPath>bin\Release\</OutputPath> 32 <OutputPath>bin\Release\</OutputPath>
32 <DefineConstants>TRACE</DefineConstants> 33 <DefineConstants>TRACE</DefineConstants>
33 <ErrorReport>prompt</ErrorReport> 34 <ErrorReport>prompt</ErrorReport>
34 <WarningLevel>4</WarningLevel> 35 <WarningLevel>4</WarningLevel>
35 </PropertyGroup> 36 </PropertyGroup>
(...skipping 18 matching lines...) Expand all
54 <Reference Include="System.Core" /> 55 <Reference Include="System.Core" />
55 <Reference Include="System.IO.Compression.FileSystem" /> 56 <Reference Include="System.IO.Compression.FileSystem" />
56 <Reference Include="System.Net.Http" /> 57 <Reference Include="System.Net.Http" />
57 <Reference Include="System.Xml.Linq" /> 58 <Reference Include="System.Xml.Linq" />
58 <Reference Include="System.Data.DataSetExtensions" /> 59 <Reference Include="System.Data.DataSetExtensions" />
59 <Reference Include="Microsoft.CSharp" /> 60 <Reference Include="Microsoft.CSharp" />
60 <Reference Include="System.Data" /> 61 <Reference Include="System.Data" />
61 <Reference Include="System.Xml" /> 62 <Reference Include="System.Xml" />
62 </ItemGroup> 63 </ItemGroup>
63 <ItemGroup> 64 <ItemGroup>
64 <Compile Include="ApiItem.cs" /> 65 <Compile Include="NuGetApiPublisher.cs" />
65 <Compile Include="Utils.cs" /> 66 <Compile Include="DirectoryUtilities.cs" />
66 <Compile Include="[Discovery]\DiscoveryService.cs" /> 67 <Compile Include="Discovery\DiscoveryItem.cs" />
67 <Compile Include="[Discovery]\DiscoveryDoc.cs" /> 68 <Compile Include="NuGetUtilities.cs" />
69 <Compile Include="TraceExtensions.cs" />
70 <Compile Include="Discovery\DiscoveryService.cs" />
71 <Compile Include="Discovery\DiscoveryDoc.cs" />
68 <Compile Include="Program.cs" /> 72 <Compile Include="Program.cs" />
69 <Compile Include="Properties\AssemblyInfo.cs" /> 73 <Compile Include="Properties\AssemblyInfo.cs" />
70 </ItemGroup> 74 </ItemGroup>
71 <ItemGroup> 75 <ItemGroup>
72 <None Include="App.config" /> 76 <None Include="App.config">
77 <SubType>Designer</SubType>
78 </None>
73 <None Include="packages.config" /> 79 <None Include="packages.config" />
74 </ItemGroup> 80 </ItemGroup>
75 <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" /> 81 <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
76 <Import Project="$(SolutionDir)\.nuget\NuGet.targets" Condition="Exists('$(Sol utionDir)\.nuget\NuGet.targets')" /> 82 <Import Project="$(SolutionDir)\.nuget\NuGet.targets" Condition="Exists('$(Sol utionDir)\.nuget\NuGet.targets')" />
77 <!-- To modify your build process, add your task inside one of the targets bel ow and uncomment it.· 83 <!-- To modify your build process, add your task inside one of the targets bel ow and uncomment it.·
78 Other similar extension points exist, see Microsoft.Common.targets. 84 Other similar extension points exist, see Microsoft.Common.targets.
79 <Target Name="BeforeBuild"> 85 <Target Name="BeforeBuild">
80 </Target> 86 </Target>
81 <Target Name="AfterBuild"> 87 <Target Name="AfterBuild">
82 </Target> 88 </Target>
83 --> 89 -->
84 </Project> 90 </Project>
LEFTRIGHT

Powered by Google App Engine
RSS Feeds Recent Issues | This issue
This is Rietveld f62528b