Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Include pdb with sourcelink #44

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 0 additions & 25 deletions Ramone/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,35 +2,10 @@
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;

// General Information about an assembly is controlled through the following
// set of attributes. Change these attribute values to modify the information
// associated with an assembly.
[assembly: AssemblyTitle("Ramone")]
[assembly: AssemblyDescription("A client side library for REST and other HTTP services.")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("")]
[assembly: AssemblyProduct("Ramone")]
[assembly: AssemblyCopyright("Copyright ©2010, Ramone team")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]

// Setting ComVisible to false makes the types in this assembly not visible
// to COM components. If you need to access a type in this assembly from
// COM, set the ComVisible attribute to true on that type.
[assembly: ComVisible(false)]

// The following GUID is for the ID of the typelib if this project is exposed to COM
[assembly: Guid("81df4bd8-35f8-40ad-84e2-272000b78398")]

// Version information for an assembly consists of the following four values:
//
// Major Version
// Minor Version
// Build Number
// Revision
//
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("3.1.2.0")]
[assembly: AssemblyFileVersion("3.1.2.0")]
286 changes: 43 additions & 243 deletions Ramone/Ramone.csproj
Original file line number Diff line number Diff line change
@@ -1,266 +1,66 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="12.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProductVersion>9.0.30729</ProductVersion>
<SchemaVersion>2.0</SchemaVersion>
<ProjectGuid>{445D7DFA-0123-4CE0-ADE2-1D632A517E2C}</ProjectGuid>
<OutputType>Library</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>Ramone</RootNamespace>
<AssemblyName>Ramone</AssemblyName>
<TargetFrameworkVersion>v4.6</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
<FileUpgradeFlags>
</FileUpgradeFlags>
<OldToolsVersion>3.5</OldToolsVersion>
<UpgradeBackupLocation />
<TargetFrameworkProfile />
<PublishUrl>publish\</PublishUrl>
<Install>true</Install>
<InstallFrom>Disk</InstallFrom>
<UpdateEnabled>false</UpdateEnabled>
<UpdateMode>Foreground</UpdateMode>
<UpdateInterval>7</UpdateInterval>
<UpdateIntervalUnits>Days</UpdateIntervalUnits>
<UpdatePeriodically>false</UpdatePeriodically>
<UpdateRequired>false</UpdateRequired>
<TargetFramework>net46</TargetFramework>
<MapFileExtensions>true</MapFileExtensions>
<ApplicationRevision>0</ApplicationRevision>
<ApplicationVersion>1.0.0.%2a</ApplicationVersion>
<IsWebBootstrapper>false</IsWebBootstrapper>
<UseApplicationTrust>false</UseApplicationTrust>
<BootstrapperEnabled>true</BootstrapperEnabled>
<AssemblyTitle>Ramone</AssemblyTitle>
<Product>Ramone</Product>
<Description>Ramone is a C# library that simplifies access to HTTP based Web APIs and REST services. It has a strong focus on REST and implements elements of the Uniform Interface as first class citizens of the API.</Description>
<Copyright>Copyright ©2010-2018, Ramone team</Copyright>
<Version>3.1.2.0</Version>
<AssemblyVersion>3.1.2.0</AssemblyVersion>
<FileVersion>3.1.2.0</FileVersion>
<OutputPath>bin\$(Configuration)\</OutputPath>
<Authors>Jørn Wildt</Authors>
<PackageId>Ramone</PackageId>
<PackageLicenseUrl>https://github.com/JornWildt/Ramone/blob/master/LICENSE.TXT</PackageLicenseUrl>
<PackageProjectUrl>https://github.com/JornWildt/Ramone</PackageProjectUrl>
<PackageReleaseNotes>Version 3.1.2.0
---------------
* Update package dependencies
- jose-jwt : 2.4.0
- Newtonsoft.Json : 11.0.2
- HtmlAgilityPack : 1.8.7
</PackageReleaseNotes>
<PackageTags>rest http api web xml json</PackageTags>

<!-- Optional: Publish the repository URL in the built .nupkg (in the NuSpec <Repository> element) -->
<PublishRepositoryUrl>true</PublishRepositoryUrl>

<!-- Optional: Embed source files that are not tracked by the source control manager in the PDB -->
<EmbedUntrackedSources>true</EmbedUntrackedSources>

<!-- Optional: Include the PDB in the built .nupkg -->
<AllowedOutputExtensionsInPackageBuildOutputFolder>$(AllowedOutputExtensionsInPackageBuildOutputFolder);.pdb</AllowedOutputExtensionsInPackageBuildOutputFolder>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>bin\Debug\</OutputPath>
<DefineConstants>DEBUG;TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<DocumentationFile>
</DocumentationFile>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<Prefer32Bit>false</Prefer32Bit>
<DebugSymbols>true</DebugSymbols>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
<OutputPath>bin\Release\</OutputPath>
<DefineConstants>TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<Prefer32Bit>false</Prefer32Bit>
<DebugType>portable</DebugType>
<DebugSymbols>true</DebugSymbols>
</PropertyGroup>
<ItemGroup>
<Reference Include="CuttingEdge.Conditions, Version=1.2.0.11174, Culture=neutral, PublicKeyToken=984cb50dea722e99, processorArchitecture=MSIL">
<HintPath>..\packages\CuttingEdge.Conditions.1.2.0.0\lib\NET35\CuttingEdge.Conditions.dll</HintPath>
<Private>True</Private>
</Reference>
<Reference Include="HtmlAgilityPack, Version=1.8.7.0, Culture=neutral, PublicKeyToken=bd319b19eaf3b43a, processorArchitecture=MSIL">
<HintPath>..\packages\HtmlAgilityPack.1.8.7\lib\Net45\HtmlAgilityPack.dll</HintPath>
</Reference>
<Reference Include="jose-jwt, Version=2.4.0.0, Culture=neutral, processorArchitecture=MSIL">
<HintPath>..\packages\jose-jwt.2.4.0\lib\net40\jose-jwt.dll</HintPath>
</Reference>
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.0.0-beta-63127-02" PrivateAssets="All" />
<PackageReference Include="CuttingEdge.Conditions" Version="1.2.0.0" />
<PackageReference Include="HtmlAgilityPack" Version="1.8.7" />
<PackageReference Include="jose-jwt" Version="2.4.0" />
<PackageReference Include="Newtonsoft.Json" Version="11.0.2" />
</ItemGroup>
<ItemGroup>
<Reference Include="Microsoft.CSharp" />
<Reference Include="Newtonsoft.Json, Version=11.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL">
<HintPath>..\packages\Newtonsoft.Json.11.0.2\lib\net45\Newtonsoft.Json.dll</HintPath>
</Reference>
<Reference Include="System" />
<Reference Include="System.Core">
<RequiredTargetFramework>3.5</RequiredTargetFramework>
</Reference>
<Reference Include="System.Runtime.Serialization" />
<Reference Include="System.ServiceModel" />
<Reference Include="System.ServiceModel.Web">
<RequiredTargetFramework>3.5</RequiredTargetFramework>
</Reference>
<Reference Include="System.ServiceModel.Web" />
<Reference Include="System.Web" />
<Reference Include="System.Web.Extensions" />
<Reference Include="System.Xml.Linq">
<RequiredTargetFramework>3.5</RequiredTargetFramework>
</Reference>
<Reference Include="System.Data.DataSetExtensions">
<RequiredTargetFramework>3.5</RequiredTargetFramework>
</Reference>
<Reference Include="System.Data" />
<Reference Include="System.Xml" />
</ItemGroup>
<ItemGroup>
<Compile Include="AsyncEventError.cs" />
<Compile Include="AsyncEventRequest.cs" />
<Compile Include="AsyncRequest.cs" />
<Compile Include="AuthorizationExtensions.cs" />
<Compile Include="BaseRequest.cs" />
<Compile Include="BindingExtensions.cs" />
<Compile Include="CodecManagerExtensions.cs" />
<Compile Include="ConnectionStatistics.cs" />
<Compile Include="FileExtensions.cs" />
<Compile Include="HeaderConstants.cs" />
<Compile Include="HyperMedia\ILinkTemplate.cs" />
<Compile Include="HyperMedia\IParameters.cs" />
<Compile Include="HyperMedia\ISelectable.cs" />
<Compile Include="HyperMedia\LinkBase.cs" />
<Compile Include="HyperMedia\SelectableBase.cs" />
<Compile Include="HyperMedia\SelectFailedException.cs" />
<Compile Include="HyperMedia\WebLink.cs" />
<Compile Include="HyperMedia\WebLinkExtensions.cs" />
<Compile Include="IContextContainer.cs" />
<Compile Include="IHaveContext.cs" />
<Compile Include="IHaveResponseInterceptors.cs" />
<Compile Include="IInterceptorSet.cs" />
<Compile Include="Implementation\InterceptorSet.cs" />
<Compile Include="Implementation\ResponseInterceptorSet.cs" />
<Compile Include="IO\MemoryFile.cs" />
<Compile Include="IO\StringFile.cs" />
<Compile Include="IRequestInterceptor2.cs" />
<Compile Include="IResponseInterceptor.cs" />
<Compile Include="IResponseInterceptorSet.cs" />
<Compile Include="MediaTypes\Atom\AtomLinkExtensions.cs" />
<Compile Include="MediaTypes\ByteArrayCodec.cs" />
<Compile Include="MediaTypes\Html\Anchor.cs" />
<Compile Include="MediaTypes\Html\HtmlFormExtensions.cs" />
<Compile Include="MediaTypes\Html\Form.cs" />
<Compile Include="HyperMedia\IKeyValueForm.cs" />
<Compile Include="MediaTypes\Html\HtmlAnchorExtensions.cs" />
<Compile Include="MediaTypes\Html\HtmlLinkExtensions.cs" />
<Compile Include="HyperMediaExtensions.cs" />
<Compile Include="HyperMedia\ILink.cs" />
<Compile Include="MediaTypes\Atom\AtomLink.cs" />
<Compile Include="MediaTypes\Atom\AtomLinkList.cs" />
<Compile Include="IHaveRequestInterceptors.cs" />
<Compile Include="IO\File.cs" />
<Compile Include="IO\IFile.cs" />
<Compile Include="AuthorizationInterceptors\BasicAuthorizationInterceptor.cs" />
<Compile Include="IRequestStreamWrapper.cs" />
<Compile Include="MediaType.cs" />
<Compile Include="MediaTypes\Atom\AtomConstants.cs" />
<Compile Include="MediaTypes\FormUrlEncoded\FormUrlEncodedSerializerCodec.cs" />
<Compile Include="MediaTypes\Html\HtmlDocumentCodec.cs" />
<Compile Include="MediaTypes\Html\Link.cs" />
<Compile Include="MediaTypes\JsonPatch\IJsonPatchDocumentVisitor.cs" />
<Compile Include="MediaTypes\JsonPatch\JsonPatchDocument.cs" />
<Compile Include="MediaTypes\JsonPatch\JsonPatchDocumentCodec.cs" />
<Compile Include="MediaTypes\JsonPatch\JsonPatchDocumentVisitor.cs" />
<Compile Include="MediaTypes\JsonPatch\JsonPatchParserException.cs" />
<Compile Include="MediaTypes\Json\JsonSerializerCodec.cs" />
<Compile Include="MediaTypes\MultipartFormData\MultipartFormDataSerializerCodec.cs" />
<Compile Include="MediaTypes\OpenSearch\OpenSearchDescription.cs" />
<Compile Include="MediaTypes\StreamCodec.cs" />
<Compile Include="MediaTypes\StringCodec.cs" />
<Compile Include="MediaTypes\TextCodecBase.cs" />
<Compile Include="MediaTypes\Xml\XmlConfiguration.cs" />
<Compile Include="MediaTypes\Xml\XmlDocumentCodec.cs" />
<Compile Include="MediaTypes\Xml\XmlSerializerCodec.cs" />
<Compile Include="OAuth1\IOAuth1Logger.cs" />
<Compile Include="OAuth1\OAuth1Settings.cs" />
<Compile Include="OAuth1\OAuth1Token.cs" />
<Compile Include="OAuth1\OAuth1Extensions.cs" />
<Compile Include="OAuth1\OAuth1RequestInterceptor.cs" />
<Compile Include="OAuth1\QueryParameter.cs" />
<Compile Include="OAuth2\BearerTokenRequestInterceptor.cs" />
<Compile Include="OAuth2\OAuth2AccessTokenResponse.cs" />
<Compile Include="OAuth2\OAuth2AuthorizationCodeResponse.cs" />
<Compile Include="OAuth2\OAuth2Extensions.cs" />
<Compile Include="OAuth2\OAuth2SessionState.cs" />
<Compile Include="OAuth2\OAuth2Settings.cs" />
<Compile Include="RamoneConfiguration.cs" />
<Compile Include="Extensions.cs" />
<Compile Include="IAuthorizationDispatcher.cs" />
<Compile Include="IAuthorizationHandler.cs" />
<Compile Include="Implementation\AuthorizationDispatcher.cs" />
<Compile Include="Implementation\CodecManager.cs" />
<Compile Include="MediaTypes\Atom\AtomFeedCodec.cs" />
<Compile Include="MediaTypes\Atom\AtomItemCodec.cs" />
<Compile Include="MediaTypes\XmlStreamCodecBase.cs" />
<Compile Include="ICodecManager.cs" />
<Compile Include="IMediaTypeCodec.cs" />
<Compile Include="IMediaTypeReader.cs" />
<Compile Include="IMediaTypeWriter.cs" />
<Compile Include="IService.cs" />
<Compile Include="IRequestInterceptorSet.cs" />
<Compile Include="Implementation\RamoneService.cs" />
<Compile Include="Implementation\RequestInterceptorSet.cs" />
<Compile Include="IObjectContainer.cs" />
<Compile Include="ISession.cs" />
<Compile Include="IRequestInterceptor.cs" />
<Compile Include="Implementation\RamoneSession.cs" />
<Compile Include="RamoneException.cs" />
<Compile Include="Request.cs" />
<Compile Include="Response.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="RequestContext.cs" />
<Compile Include="RequestStreamWrapperContext.cs" />
<Compile Include="ResponseContext.cs" />
<Compile Include="UriExtensions.cs" />
<Compile Include="Utility\Base64Utility.cs" />
<Compile Include="Utility\ContextRegistrator.cs" />
<Compile Include="Utility\CryptographicRandomNumberGenerator.cs" />
<Compile Include="Utility\DateTimeUtility.cs" />
<Compile Include="Utility\FileUtility.cs" />
<Compile Include="Utility\JsonWebToken\AssertionArgs.cs" />
<Compile Include="Utility\JsonPointerHelper.cs" />
<Compile Include="Utility\HashtableConverterPropertyVisitor.cs" />
<Compile Include="Utility\HashtableConverter.cs" />
<Compile Include="Utility\DictionaryConverterPropertyVisitor.cs" />
<Compile Include="Utility\HeaderEncodingParser.cs" />
<Compile Include="Utility\MediaTypeParser.cs" />
<Compile Include="Utility\MessageDebugger.cs" />
<Compile Include="Utility\MethodDescription.cs" />
<Compile Include="Utility\MultipartFormDataPropertyVisitor.cs" />
<Compile Include="Utility\DictionaryConverter.cs" />
<Compile Include="Utility\FormUrlEncodingPropertyVisitor.cs" />
<Compile Include="Utility\FormUrlEncodingSerializer.cs" />
<Compile Include="Utility\MultipartFormDataSerializer.cs" />
<Compile Include="OAuth1\SignatureHelper.cs" />
<Compile Include="Utility\ObjectSerialization\Formaters\DelegateFormater.cs" />
<Compile Include="Utility\ObjectSerialization\Formaters\FormaterBase.cs" />
<Compile Include="Utility\ObjectSerialization\Formaters\UriFormater.cs" />
<Compile Include="Utility\ObjectSerialization\IObjectSerializerFormater.cs" />
<Compile Include="Utility\ObjectSerialization\IObjectSerializerFormaterManager.cs" />
<Compile Include="Utility\ObjectSerialization\IPropertyVisitor.cs" />
<Compile Include="Utility\ObjectSerialization\ObjectSerializer.cs" />
<Compile Include="Utility\ObjectSerialization\ObjectSerializerFormaterManager.cs" />
<Compile Include="Utility\ObjectSerialization\ObjectSerializerSettings.cs" />
<Compile Include="Utility\RandomStrings.cs" />
<Compile Include="Utility\TempFile.cs" />
<Compile Include="Utility\WebLinkParser.cs" />
<Reference Include="System.Data.DataSetExtensions" />
</ItemGroup>
<ItemGroup>
<BootstrapperPackage Include="Microsoft.Net.Client.3.5">
<Visible>False</Visible>
<ProductName>.NET Framework 3.5 SP1 Client Profile</ProductName>
<Install>false</Install>
</BootstrapperPackage>
<BootstrapperPackage Include="Microsoft.Net.Framework.3.5.SP1">
<Visible>False</Visible>
<ProductName>.NET Framework 3.5 SP1</ProductName>
<Install>true</Install>
</BootstrapperPackage>
<BootstrapperPackage Include="Microsoft.Windows.Installer.3.1">
<Visible>False</Visible>
<ProductName>Windows Installer 3.1</ProductName>
<Install>true</Install>
</BootstrapperPackage>
</ItemGroup>
<ItemGroup>
<None Include="packages.config" />
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
<PropertyGroup>
<PostBuildEvent>
</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>
33 changes: 0 additions & 33 deletions Ramone/Ramone.nuspec

This file was deleted.

7 changes: 0 additions & 7 deletions Ramone/packages.config

This file was deleted.

1 change: 1 addition & 0 deletions build.bat
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
dotnet pack -c Release --output ../nupkgs Ramone