upgraded nuget packages.

This commit is contained in:
morkt 2015-02-15 19:47:28 +04:00
parent 7de11127a7
commit 4b28197c37
24 changed files with 28789 additions and 448 deletions

View File

@ -77,14 +77,17 @@
</PropertyGroup>
<ItemGroup>
<Reference Include="Microsoft.VisualBasic" />
<Reference Include="Microsoft.WindowsAPICodePack">
<HintPath>packages\WindowsAPICodePack-Core.1.1\lib\Microsoft.WindowsAPICodePack.dll</HintPath>
<Reference Include="Microsoft.WindowsAPICodePack, Version=1.1.0.0, Culture=neutral, processorArchitecture=MSIL">
<SpecificVersion>False</SpecificVersion>
<HintPath>packages\WindowsAPICodePack-Core.1.1.1\lib\Microsoft.WindowsAPICodePack.dll</HintPath>
</Reference>
<Reference Include="Microsoft.WindowsAPICodePack.Shell">
<HintPath>packages\WindowsAPICodePack-Shell.1.1\lib\Microsoft.WindowsAPICodePack.Shell.dll</HintPath>
<Reference Include="Microsoft.WindowsAPICodePack.Shell, Version=1.1.0.0, Culture=neutral, processorArchitecture=MSIL">
<SpecificVersion>False</SpecificVersion>
<HintPath>packages\WindowsAPICodePack-Shell.1.1.1\lib\Microsoft.WindowsAPICodePack.Shell.dll</HintPath>
</Reference>
<Reference Include="NAudio">
<HintPath>packages\NAudio.1.7.1\lib\net35\NAudio.dll</HintPath>
<Reference Include="NAudio, Version=1.7.2.19, Culture=neutral, processorArchitecture=MSIL">
<SpecificVersion>False</SpecificVersion>
<HintPath>packages\NAudio.1.7.2\lib\net35\NAudio.dll</HintPath>
</Reference>
<Reference Include="Ookii.Dialogs.Wpf, Version=1.0.0.0, Culture=neutral, PublicKeyToken=0c15020868fd6249, processorArchitecture=MSIL">
<SpecificVersion>False</SpecificVersion>

View File

@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<packages>
<package id="NAudio" version="1.7.1" targetFramework="net45" />
<package id="NAudio" version="1.7.2" targetFramework="net45" />
<package id="Ookii.Dialogs" version="1.0" targetFramework="net45" />
<package id="WindowsAPICodePack-Core" version="1.1" targetFramework="net45" />
<package id="WindowsAPICodePack-Shell" version="1.1" targetFramework="net45" />
<package id="WindowsAPICodePack-Core" version="1.1.1" targetFramework="net45" />
<package id="WindowsAPICodePack-Shell" version="1.1.1" targetFramework="net45" />
</packages>

Binary file not shown.

View File

@ -1,14 +0,0 @@
<?xml version="1.0"?>
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
<metadata>
<id>NAudio</id>
<version>1.7.1</version>
<authors>Mark Heath</authors>
<owners>Mark Heath</owners>
<licenseUrl>http://naudio.codeplex.com/license</licenseUrl>
<projectUrl>http://naudio.codeplex.com/</projectUrl>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<description>NAudio, an audio library for .NET</description>
<tags>C# .NET audio sound</tags>
</metadata>
</package>

BIN
packages/NAudio.1.7.2/NAudio.1.7.2.nupkg vendored Normal file

Binary file not shown.

View File

@ -282,12 +282,12 @@
</member>
<member name="T:NAudio.CoreAudioApi.AudioClient">
<summary>
Windows Vista CoreAudio AudioClient
Windows CoreAudio AudioClient
</summary>
</member>
<member name="M:NAudio.CoreAudioApi.AudioClient.Initialize(NAudio.CoreAudioApi.AudioClientShareMode,NAudio.CoreAudioApi.AudioClientStreamFlags,System.Int64,System.Int64,NAudio.Wave.WaveFormat,System.Guid)">
<summary>
Initialize the Audio Client
Initializes the Audio Client
</summary>
<param name="shareMode">Share Mode</param>
<param name="streamFlags">Stream Flags</param>
@ -302,9 +302,7 @@
</summary>
<param name="shareMode">The share mode.</param>
<param name="desiredFormat">The desired format.</param>
<returns>
<c>true</c> if [is format supported] [the specified share mode]; otherwise, <c>false</c>.
</returns>
<returns>True if the format is supported</returns>
</member>
<member name="M:NAudio.CoreAudioApi.AudioClient.IsFormatSupported(NAudio.CoreAudioApi.AudioClientShareMode,NAudio.Wave.WaveFormat,NAudio.Wave.WaveFormatExtensible@)">
<summary>
@ -313,9 +311,7 @@
<param name="shareMode">Share Mode</param>
<param name="desiredFormat">Desired Format</param>
<param name="closestMatchFormat">Output The closest match format.</param>
<returns>
<c>true</c> if [is format supported] [the specified share mode]; otherwise, <c>false</c>.
</returns>
<returns>True if the format is supported</returns>
</member>
<member name="M:NAudio.CoreAudioApi.AudioClient.Start">
<summary>
@ -348,33 +344,35 @@
</member>
<member name="P:NAudio.CoreAudioApi.AudioClient.MixFormat">
<summary>
Mix Format,
Retrieves the stream format that the audio engine uses for its internal processing of shared-mode streams.
Can be called before initialize
</summary>
</member>
<member name="P:NAudio.CoreAudioApi.AudioClient.BufferSize">
<summary>
Gets the buffer size (must initialize first)
Retrieves the size (maximum capacity) of the audio buffer associated with the endpoint. (must initialize first)
</summary>
</member>
<member name="P:NAudio.CoreAudioApi.AudioClient.StreamLatency">
<summary>
Gets the stream latency (must initialize first)
Retrieves the maximum latency for the current stream and can be called any time after the stream has been initialized.
</summary>
</member>
<member name="P:NAudio.CoreAudioApi.AudioClient.CurrentPadding">
<summary>
Gets the current padding (must initialize first)
Retrieves the number of frames of padding in the endpoint buffer (must initialize first)
</summary>
</member>
<member name="P:NAudio.CoreAudioApi.AudioClient.DefaultDevicePeriod">
<summary>
Gets the default device period (can be called before initialize)
Retrieves the length of the periodic interval separating successive processing passes by the audio engine on the data in the endpoint buffer.
(can be called before initialize)
</summary>
</member>
<member name="P:NAudio.CoreAudioApi.AudioClient.MinimumDevicePeriod">
<summary>
Gets the minimum device period (can be called before initialize)
Gets the minimum device period
(can be called before initialize)
</summary>
</member>
<member name="P:NAudio.CoreAudioApi.AudioClient.AudioClockClient">
@ -12862,7 +12860,7 @@
</member>
<member name="T:NAudio.CoreAudioApi.Interfaces.IAudioClient">
<summary>
n.b. WORK IN PROGRESS - this code will probably do nothing but crash at the moment
Windows CoreAudio IAudioClient interface
Defined in AudioClient.h
</summary>
</member>
@ -13069,6 +13067,11 @@
MM Device Enumerator
</summary>
</member>
<member name="M:NAudio.CoreAudioApi.MMDeviceEnumerator.#ctor">
<summary>
Creates a new MM Device Enumerator
</summary>
</member>
<member name="M:NAudio.CoreAudioApi.MMDeviceEnumerator.EnumerateAudioEndPoints(NAudio.CoreAudioApi.DataFlow,NAudio.CoreAudioApi.DeviceState)">
<summary>
Enumerate Audio Endpoints
@ -13092,10 +13095,19 @@
<param name="id">Device ID</param>
<returns>Device</returns>
</member>
<member name="M:NAudio.CoreAudioApi.MMDeviceEnumerator.#ctor">
<member name="M:NAudio.CoreAudioApi.MMDeviceEnumerator.RegisterEndpointNotificationCallback(NAudio.CoreAudioApi.Interfaces.IMMNotificationClient)">
<summary>
Creates a new MM Device Enumerator
Registers a call back for Device Events
</summary>
<param name="client">Object implementing IMMNotificationClient type casted as IMMNotificationClient interface</param>
<returns></returns>
</member>
<member name="M:NAudio.CoreAudioApi.MMDeviceEnumerator.UnregisterEndpointNotificationCallback(NAudio.CoreAudioApi.Interfaces.IMMNotificationClient)">
<summary>
Unregisters a call back for Device Events
</summary>
<param name="client">Object implementing IMMNotificationClient type casted as IMMNotificationClient interface </param>
<returns></returns>
</member>
<member name="T:NAudio.CoreAudioApi.PropertyStore">
<summary>

View File

@ -282,12 +282,12 @@
</member>
<member name="T:NAudio.CoreAudioApi.AudioClient">
<summary>
Windows Vista CoreAudio AudioClient
Windows CoreAudio AudioClient
</summary>
</member>
<member name="M:NAudio.CoreAudioApi.AudioClient.Initialize(NAudio.CoreAudioApi.AudioClientShareMode,NAudio.CoreAudioApi.AudioClientStreamFlags,System.Int64,System.Int64,NAudio.Wave.WaveFormat,System.Guid)">
<summary>
Initialize the Audio Client
Initializes the Audio Client
</summary>
<param name="shareMode">Share Mode</param>
<param name="streamFlags">Stream Flags</param>
@ -302,9 +302,7 @@
</summary>
<param name="shareMode">The share mode.</param>
<param name="desiredFormat">The desired format.</param>
<returns>
<c>true</c> if [is format supported] [the specified share mode]; otherwise, <c>false</c>.
</returns>
<returns>True if the format is supported</returns>
</member>
<member name="M:NAudio.CoreAudioApi.AudioClient.IsFormatSupported(NAudio.CoreAudioApi.AudioClientShareMode,NAudio.Wave.WaveFormat,NAudio.Wave.WaveFormatExtensible@)">
<summary>
@ -313,9 +311,7 @@
<param name="shareMode">Share Mode</param>
<param name="desiredFormat">Desired Format</param>
<param name="closestMatchFormat">Output The closest match format.</param>
<returns>
<c>true</c> if [is format supported] [the specified share mode]; otherwise, <c>false</c>.
</returns>
<returns>True if the format is supported</returns>
</member>
<member name="M:NAudio.CoreAudioApi.AudioClient.Start">
<summary>
@ -348,33 +344,35 @@
</member>
<member name="P:NAudio.CoreAudioApi.AudioClient.MixFormat">
<summary>
Mix Format,
Retrieves the stream format that the audio engine uses for its internal processing of shared-mode streams.
Can be called before initialize
</summary>
</member>
<member name="P:NAudio.CoreAudioApi.AudioClient.BufferSize">
<summary>
Gets the buffer size (must initialize first)
Retrieves the size (maximum capacity) of the audio buffer associated with the endpoint. (must initialize first)
</summary>
</member>
<member name="P:NAudio.CoreAudioApi.AudioClient.StreamLatency">
<summary>
Gets the stream latency (must initialize first)
Retrieves the maximum latency for the current stream and can be called any time after the stream has been initialized.
</summary>
</member>
<member name="P:NAudio.CoreAudioApi.AudioClient.CurrentPadding">
<summary>
Gets the current padding (must initialize first)
Retrieves the number of frames of padding in the endpoint buffer (must initialize first)
</summary>
</member>
<member name="P:NAudio.CoreAudioApi.AudioClient.DefaultDevicePeriod">
<summary>
Gets the default device period (can be called before initialize)
Retrieves the length of the periodic interval separating successive processing passes by the audio engine on the data in the endpoint buffer.
(can be called before initialize)
</summary>
</member>
<member name="P:NAudio.CoreAudioApi.AudioClient.MinimumDevicePeriod">
<summary>
Gets the minimum device period (can be called before initialize)
Gets the minimum device period
(can be called before initialize)
</summary>
</member>
<member name="P:NAudio.CoreAudioApi.AudioClient.AudioClockClient">
@ -921,7 +919,7 @@
</member>
<member name="T:NAudio.CoreAudioApi.Interfaces.IAudioClient">
<summary>
n.b. WORK IN PROGRESS - this code will probably do nothing but crash at the moment
Windows CoreAudio IAudioClient interface
Defined in AudioClient.h
</summary>
</member>
@ -1082,6 +1080,11 @@
MM Device Enumerator
</summary>
</member>
<member name="M:NAudio.CoreAudioApi.MMDeviceEnumerator.#ctor">
<summary>
Creates a new MM Device Enumerator
</summary>
</member>
<member name="M:NAudio.CoreAudioApi.MMDeviceEnumerator.EnumerateAudioEndPoints(NAudio.CoreAudioApi.DataFlow,NAudio.CoreAudioApi.DeviceState)">
<summary>
Enumerate Audio Endpoints
@ -1105,10 +1108,19 @@
<param name="id">Device ID</param>
<returns>Device</returns>
</member>
<member name="M:NAudio.CoreAudioApi.MMDeviceEnumerator.#ctor">
<member name="M:NAudio.CoreAudioApi.MMDeviceEnumerator.RegisterEndpointNotificationCallback(NAudio.CoreAudioApi.Interfaces.IMMNotificationClient)">
<summary>
Creates a new MM Device Enumerator
Registers a call back for Device Events
</summary>
<param name="client">Object implementing IMMNotificationClient type casted as IMMNotificationClient interface</param>
<returns></returns>
</member>
<member name="M:NAudio.CoreAudioApi.MMDeviceEnumerator.UnregisterEndpointNotificationCallback(NAudio.CoreAudioApi.Interfaces.IMMNotificationClient)">
<summary>
Unregisters a call back for Device Events
</summary>
<param name="client">Object implementing IMMNotificationClient type casted as IMMNotificationClient interface </param>
<returns></returns>
</member>
<member name="T:NAudio.CoreAudioApi.PropertyKey">
<summary>
@ -1597,6 +1609,51 @@
This is actually a downwards normalize for data that will clip
</summary>
</member>
<member name="T:NAudio.Dsp.WdlResampler">
<summary>
Fully managed resampler, based on Cockos WDL Resampler
</summary>
</member>
<member name="M:NAudio.Dsp.WdlResampler.#ctor">
<summary>
Creates a new Resampler
</summary>
</member>
<member name="M:NAudio.Dsp.WdlResampler.SetMode(System.Boolean,System.Int32,System.Boolean,System.Int32,System.Int32)">
<summary>
sets the mode
if sinc set, it overrides interp or filtercnt
</summary>
</member>
<member name="M:NAudio.Dsp.WdlResampler.SetFilterParms(System.Single,System.Single)">
<summary>
Sets the filter parameters
used for filtercnt>0 but not sinc
</summary>
</member>
<member name="M:NAudio.Dsp.WdlResampler.SetFeedMode(System.Boolean)">
<summary>
Set feed mode
</summary>
<param name="wantInputDriven">if true, that means the first parameter to ResamplePrepare will specify however much input you have, not how much you want</param>
</member>
<member name="M:NAudio.Dsp.WdlResampler.Reset(System.Double)">
<summary>
Reset
</summary>
</member>
<member name="M:NAudio.Dsp.WdlResampler.ResamplePrepare(System.Int32,System.Int32,System.Single[]@,System.Int32@)">
<summary>
Prepare
note that it is safe to call ResamplePrepare without calling ResampleOut (the next call of ResamplePrepare will function as normal)
nb inbuffer was WDL_ResampleSample **, returning a place to put the in buffer, so we return a buffer and offset
</summary>
<param name="out_samples">req_samples is output samples desired if !wantInputDriven, or if wantInputDriven is input samples that we have</param>
<param name="nch"></param>
<param name="inbuffer"></param>
<param name="inbufferOffset"></param>
<returns>returns number of samples desired (put these into *inbuffer)</returns>
</member>
<member name="T:NAudio.Wave.ChannelMode">
<summary>
Channel Mode
@ -7753,13 +7810,6 @@
initializes MediaFoundation - only needs to be called once per process
</summary>
</member>
<member name="M:NAudio.MediaFoundation.MediaFoundationApi.EnumerateTransforms(System.Guid)">
<summary>
Enumerate the installed MediaFoundation transforms in the specified category
</summary>
<param name="category">A category from MediaFoundationTransformCategories</param>
<returns></returns>
</member>
<member name="M:NAudio.MediaFoundation.MediaFoundationApi.Shutdown">
<summary>
uninitializes MediaFoundation
@ -7899,11 +7949,6 @@
Creates a Microsoft Media Foundation byte stream that wraps an IRandomAccessStream object.
</summary>
</member>
<member name="M:NAudio.MediaFoundation.MediaFoundationInterop.MFTEnumEx(System.Guid,NAudio.MediaFoundation._MFT_ENUM_FLAG,NAudio.MediaFoundation.MFT_REGISTER_TYPE_INFO,NAudio.MediaFoundation.MFT_REGISTER_TYPE_INFO,System.IntPtr@,System.Int32@)">
<summary>
Gets a list of Microsoft Media Foundation transforms (MFTs) that match specified search criteria.
</summary>
</member>
<member name="M:NAudio.MediaFoundation.MediaFoundationInterop.MFCreateSample(NAudio.MediaFoundation.IMFSample@)">
<summary>
Creates an empty media sample.
@ -7919,11 +7964,6 @@
Creates an empty attribute store.
</summary>
</member>
<member name="M:NAudio.MediaFoundation.MediaFoundationInterop.MFTranscodeGetAudioOutputAvailableTypes(System.Guid,NAudio.MediaFoundation._MFT_ENUM_FLAG,NAudio.MediaFoundation.IMFAttributes,NAudio.MediaFoundation.IMFCollection@)">
<summary>
Gets a list of output formats from an audio encoder.
</summary>
</member>
<member name="T:NAudio.MediaFoundation.MediaFoundationTransform">
<summary>
An abstract base class for simplifying working with Media Foundation Transforms
@ -9968,26 +10008,27 @@
Reads from this provider
</summary>
</member>
<member name="T:NAudio.Wave.WaveExtensionMethods">
<member name="T:NAudio.Wave.SampleProviders.WdlResamplingSampleProvider">
<summary>
Useful extension methods to make switching between WaveAndSampleProvider easier
Fully managed resampling sample provider, based on the WDL Resampler
</summary>
</member>
<member name="M:NAudio.Wave.WaveExtensionMethods.ToSampleProvider(NAudio.Wave.IWaveProvider)">
<member name="M:NAudio.Wave.SampleProviders.WdlResamplingSampleProvider.#ctor(NAudio.Wave.ISampleProvider,System.Int32)">
<summary>
Converts a WaveProvider into a SampleProvider (only works for PCM)
Constructs a new resampler
</summary>
<param name="waveProvider">WaveProvider to convert</param>
<returns></returns>
<param name="source">Source to resample</param>
<param name="newSampleRate">Desired output sample rate</param>
</member>
<member name="M:NAudio.Wave.WaveExtensionMethods.Init(NAudio.Wave.IWavePlayer,NAudio.Wave.ISampleProvider,System.Boolean)">
<member name="M:NAudio.Wave.SampleProviders.WdlResamplingSampleProvider.Read(System.Single[],System.Int32,System.Int32)">
<summary>
Allows sending a SampleProvider directly to an IWavePlayer without needing to convert
back to an IWaveProvider
Reads from this sample provider
</summary>
</member>
<member name="P:NAudio.Wave.SampleProviders.WdlResamplingSampleProvider.WaveFormat">
<summary>
Output WaveFormat
</summary>
<param name="wavePlayer">The WavePlayer</param>
<param name="sampleProvider"></param>
<param name="convertTo16Bit"></param>
</member>
<member name="T:NAudio.Wave.AdpcmWaveFormat">
<summary>
@ -11023,93 +11064,6 @@
</summary>
<value>The int buffer count.</value>
</member>
<member name="T:NAudio.Wave.MediaFoundationEncoder">
<summary>
Media Foundation Encoder class allows you to use Media Foundation to encode an IWaveProvider
to any supported encoding format
</summary>
</member>
<member name="M:NAudio.Wave.MediaFoundationEncoder.GetEncodeBitrates(System.Guid,System.Int32,System.Int32)">
<summary>
Queries the available bitrates for a given encoding output type, sample rate and number of channels
</summary>
<param name="audioSubtype">Audio subtype - a value from the AudioSubtypes class</param>
<param name="sampleRate">The sample rate of the PCM to encode</param>
<param name="channels">The number of channels of the PCM to encode</param>
<returns>An array of available bitrates in average bits per second</returns>
</member>
<member name="M:NAudio.Wave.MediaFoundationEncoder.GetOutputMediaTypes(System.Guid)">
<summary>
Gets all the available media types for a particular
</summary>
<param name="audioSubtype">Audio subtype - a value from the AudioSubtypes class</param>
<returns>An array of available media types that can be encoded with this subtype</returns>
</member>
<member name="M:NAudio.Wave.MediaFoundationEncoder.EncodeToWma(NAudio.Wave.IWaveProvider,System.String,System.Int32)">
<summary>
Helper function to simplify encoding Window Media Audio
Should be supported on Vista and above (not tested)
</summary>
<param name="inputProvider">Input provider, must be PCM</param>
<param name="outputFile">Output file path, should end with .wma</param>
<param name="desiredBitRate">Desired bitrate. Use GetEncodeBitrates to find the possibilities for your input type</param>
</member>
<member name="M:NAudio.Wave.MediaFoundationEncoder.EncodeToMp3(NAudio.Wave.IWaveProvider,System.String,System.Int32)">
<summary>
Helper function to simplify encoding to MP3
By default, will only be available on Windows 8 and above
</summary>
<param name="inputProvider">Input provider, must be PCM</param>
<param name="outputFile">Output file path, should end with .mp3</param>
<param name="desiredBitRate">Desired bitrate. Use GetEncodeBitrates to find the possibilities for your input type</param>
</member>
<member name="M:NAudio.Wave.MediaFoundationEncoder.EncodeToAac(NAudio.Wave.IWaveProvider,System.String,System.Int32)">
<summary>
Helper function to simplify encoding to AAC
By default, will only be available on Windows 7 and above
</summary>
<param name="inputProvider">Input provider, must be PCM</param>
<param name="outputFile">Output file path, should end with .mp4 (or .aac on Windows 8)</param>
<param name="desiredBitRate">Desired bitrate. Use GetEncodeBitrates to find the possibilities for your input type</param>
</member>
<member name="M:NAudio.Wave.MediaFoundationEncoder.SelectMediaType(System.Guid,NAudio.Wave.WaveFormat,System.Int32)">
<summary>
Tries to find the encoding media type with the closest bitrate to that specified
</summary>
<param name="audioSubtype">Audio subtype, a value from AudioSubtypes</param>
<param name="inputFormat">Your encoder input format (used to check sample rate and channel count)</param>
<param name="desiredBitRate">Your desired bitrate</param>
<returns>The closest media type, or null if none available</returns>
</member>
<member name="M:NAudio.Wave.MediaFoundationEncoder.#ctor(NAudio.MediaFoundation.MediaType)">
<summary>
Creates a new encoder that encodes to the specified output media type
</summary>
<param name="outputMediaType">Desired output media type</param>
</member>
<member name="M:NAudio.Wave.MediaFoundationEncoder.Encode(System.String,NAudio.Wave.IWaveProvider)">
<summary>
Encodes a file
</summary>
<param name="outputFile">Output filename (container type is deduced from the filename)</param>
<param name="inputProvider">Input provider (should be PCM, some encoders will also allow IEEE float)</param>
</member>
<member name="M:NAudio.Wave.MediaFoundationEncoder.Dispose(System.Boolean)">
<summary>
Disposes this instance
</summary>
<param name="disposing"></param>
</member>
<member name="M:NAudio.Wave.MediaFoundationEncoder.Dispose">
<summary>
Disposes this instance
</summary>
</member>
<member name="M:NAudio.Wave.MediaFoundationEncoder.Finalize">
<summary>
Finalizer
</summary>
</member>
<member name="T:NAudio.Wave.PlaybackState">
<summary>
Playback State
@ -11341,42 +11295,6 @@
Gets the WaveFormat
</summary>
</member>
<member name="T:NAudio.Wave.MediaFoundationResampler">
<summary>
The Media Foundation Resampler Transform
</summary>
</member>
<member name="M:NAudio.Wave.MediaFoundationResampler.#ctor(NAudio.Wave.IWaveProvider,NAudio.Wave.WaveFormat)">
<summary>
Creates the Media Foundation Resampler, allowing modifying of sample rate, bit depth and channel count
</summary>
<param name="sourceProvider">Source provider, must be PCM</param>
<param name="outputFormat">Output format, must also be PCM</param>
</member>
<member name="M:NAudio.Wave.MediaFoundationResampler.#ctor(NAudio.Wave.IWaveProvider,System.Int32)">
<summary>
Creates a resampler with a specified target output sample rate
</summary>
<param name="sourceProvider">Source provider</param>
<param name="outputSampleRate">Output sample rate</param>
</member>
<member name="M:NAudio.Wave.MediaFoundationResampler.CreateTransform">
<summary>
Creates and configures the actual Resampler transform
</summary>
<returns>A newly created and configured resampler MFT</returns>
</member>
<member name="M:NAudio.Wave.MediaFoundationResampler.Dispose(System.Boolean)">
<summary>
Disposes this resampler
</summary>
</member>
<member name="P:NAudio.Wave.MediaFoundationResampler.ResamplerQuality">
<summary>
Gets or sets the Resampler quality. n.b. set the quality before starting to resample.
1 is lowest quality (linear interpolation) and 60 is best quality
</summary>
</member>
<member name="T:NAudio.Wave.MonoToStereoProvider16">
<summary>
Converts from mono to stereo, allowing freedom to route all, some, or none of the incoming signal to left or right channels
@ -12199,6 +12117,27 @@
<see cref="P:NAudio.Wave.WaveStream.WaveFormat"/>
</summary>
</member>
<member name="T:NAudio.Wave.WaveExtensionMethods">
<summary>
Useful extension methods to make switching between WaveAndSampleProvider easier
</summary>
</member>
<member name="M:NAudio.Wave.WaveExtensionMethods.ToSampleProvider(NAudio.Wave.IWaveProvider)">
<summary>
Converts a WaveProvider into a SampleProvider (only works for PCM)
</summary>
<param name="waveProvider">WaveProvider to convert</param>
<returns></returns>
</member>
<member name="M:NAudio.Wave.WaveExtensionMethods.Init(NAudio.Wave.IWavePlayer,NAudio.Wave.ISampleProvider,System.Boolean)">
<summary>
Allows sending a SampleProvider directly to an IWavePlayer without needing to convert
back to an IWaveProvider
</summary>
<param name="wavePlayer">The WavePlayer</param>
<param name="sampleProvider"></param>
<param name="convertTo16Bit"></param>
</member>
<member name="T:NAudio.Wave.WasapiCaptureRT">
<summary>
Audio Capture using Wasapi
@ -12284,10 +12223,18 @@
</summary>
</member>
<member name="M:NAudio.Wave.IWavePlayer.Init(NAudio.Wave.IWaveProvider)">
<summary>
Obsolete init method
</summary>
<param name="waveProvider"></param>
<returns></returns>
</member>
<member name="M:NAudio.Wave.IWavePlayer.Init(System.Func{NAudio.Wave.IWaveProvider})">
<summary>
Initialise playback
</summary>
<param name="waveProvider">The waveprovider to be played</param>
<param name="waveProviderFunc">Function to create the waveprovider to be played
Called on the playback thread</param>
</member>
<member name="P:NAudio.Wave.IWavePlayer.PlaybackState">
<summary>
@ -12350,10 +12297,22 @@
</summary>
</member>
<member name="M:NAudio.Win8.Wave.WaveOutputs.WasapiOutRT.Init(NAudio.Wave.IWaveProvider)">
<summary>
Old init implementation. Use the func one
</summary>
<param name="provider"></param>
<returns></returns>
</member>
<member name="M:NAudio.Win8.Wave.WaveOutputs.WasapiOutRT.Init(System.Func{NAudio.Wave.IWaveProvider})">
<summary>
Initializes with a function to create the provider that is made on the playback thread
</summary>
<param name="waveProviderFunc">Creates the wave provider</param>
</member>
<member name="M:NAudio.Win8.Wave.WaveOutputs.WasapiOutRT.Init">
<summary>
Initialize for playing the specified wave stream
</summary>
<param name="waveProvider">IWaveProvider to play</param>
</member>
<member name="M:NAudio.Win8.Wave.WaveOutputs.WasapiOutRT.Dispose">
<summary>

View File

@ -21,9 +21,11 @@ csechet
ChunkWare Music Software
CKing
DaMacc
Du10
eejake52
Florian Rosmann (filoe)
Giawa
Harald Petrovitsch
Hfuy
Iain McCowan
Idael Cardaso
@ -32,12 +34,15 @@ Jamie Michael Ewins
jannera
jbaker8935
jcameron23
JoeGaggler
jonahoffmann
jontdelorme
Justin Frankel
K24A3
Kassoul
kevinxxx
kzych
LionCash
Lustild
Lucian Wischik (ljw1004)
ManuN
@ -45,6 +50,8 @@ MeelMarcel
Michael Feld
Michael J
Michael Lehenbauer
myrkle
nelsonkidd
Nigel Redmon
Nikolaos Georgiou
Owen Skriloff
@ -55,16 +62,19 @@ Pygmy
Ray Molenkamp
Robert Bristow-Johnson
Scott Fleischman
Simon Clark
Sirish Bajpai
sporn
Steve Underwood
Ted Murphy
Tiny Simple Tools
Tobias Fleming
TomBogle
Tony Cabello
Tony Sistemas
TuneBlade
topher3683
volmart
Vladimir Rokovanov
Ville Koskinen
Wyatt Rice

Binary file not shown.

View File

@ -1,20 +0,0 @@
<?xml version="1.0"?>
<package xmlns="http://schemas.microsoft.com/packaging/2011/08/nuspec.xsd">
<metadata>
<id>NVorbis</id>
<version>0.8.3.0</version>
<authors>Andrew Ward</authors>
<owners>Andrew Ward</owners>
<licenseUrl>http://nvorbis.codeplex.com/license</licenseUrl>
<projectUrl>http://nvorbis.codeplex.com/</projectUrl>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<description>A fully managed implementation of a Xiph.org Foundation Ogg Vorbis decoder.</description>
<summary>A managed Xiph.org Foundation Ogg Vorbis decoder</summary>
<releaseNotes>- BugFix: Don't set the end of stream flag until the last packet of the page</releaseNotes>
<language>en-US</language>
<tags>ogg vorbis xiph audio c# sound .NET</tags>
<frameworkAssemblies>
<frameworkAssembly assemblyName="System" targetFramework="" />
</frameworkAssemblies>
</metadata>
</package>

Binary file not shown.

View File

@ -4,9 +4,9 @@
<name>NVorbis</name>
</assembly>
<members>
<member name="T:NVorbis.Ogg.ContainerReader">
<member name="T:NVorbis.BufferedReadStream">
<summary>
Provides an <see cref="T:NVorbis.IContainerReader"/> implementation for basic Ogg files.
A thread-safe, read-only, buffering stream wrapper.
</summary>
</member>
<member name="T:NVorbis.IContainerReader">
@ -59,137 +59,6 @@
Event raised when a new logical stream is found in the container.
</summary>
</member>
<member name="M:NVorbis.Ogg.ContainerReader.#ctor(System.String)">
<summary>
Creates a new instance with the specified file.
</summary>
<param name="path">The full path to the file.</param>
</member>
<member name="M:NVorbis.Ogg.ContainerReader.#ctor(System.IO.Stream,System.Boolean)">
<summary>
Creates a new instance with the specified stream. Optionally sets to close the stream when disposed.
</summary>
<param name="stream">The stream to read.</param>
<param name="closeOnDispose"><c>True</c> to close the stream when <see cref="M:NVorbis.Ogg.ContainerReader.Dispose"/> is called, otherwise <c>False</c>.</param>
</member>
<member name="M:NVorbis.Ogg.ContainerReader.Init">
<summary>
Initializes the container and finds the first stream.
</summary>
<returns><c>True</c> if a valid logical stream is found, otherwise <c>False</c>.</returns>
</member>
<member name="M:NVorbis.Ogg.ContainerReader.Dispose">
<summary>
Disposes this instance.
</summary>
</member>
<member name="M:NVorbis.Ogg.ContainerReader.GetStream(System.Int32)">
<summary>
Gets the <see cref="T:NVorbis.IPacketProvider"/> instance for the specified stream serial.
</summary>
<param name="streamSerial">The stream serial to look for.</param>
<returns>An <see cref="T:NVorbis.IPacketProvider"/> instance.</returns>
<exception cref="T:System.ArgumentOutOfRangeException">The specified stream serial was not found.</exception>
</member>
<member name="M:NVorbis.Ogg.ContainerReader.FindNextStream">
<summary>
Finds the next new stream in the container.
</summary>
<returns><c>True</c> if a new stream was found, otherwise <c>False</c>.</returns>
<exception cref="T:System.InvalidOperationException"><see cref="P:NVorbis.Ogg.ContainerReader.CanSeek"/> is <c>False</c>.</exception>
</member>
<member name="M:NVorbis.Ogg.ContainerReader.GetTotalPageCount">
<summary>
Retrieves the total number of pages in the container.
</summary>
<returns>The total number of pages.</returns>
<exception cref="T:System.InvalidOperationException"><see cref="P:NVorbis.Ogg.ContainerReader.CanSeek"/> is <c>False</c>.</exception>
</member>
<member name="P:NVorbis.Ogg.ContainerReader.StreamSerials">
<summary>
Gets the list of stream serials found in the container so far.
</summary>
</member>
<member name="E:NVorbis.Ogg.ContainerReader.NewStream">
<summary>
Event raised when a new logical stream is found in the container.
</summary>
</member>
<member name="P:NVorbis.Ogg.ContainerReader.PagesRead">
<summary>
Gets the number of pages that have been read in the container.
</summary>
</member>
<member name="P:NVorbis.Ogg.ContainerReader.CanSeek">
<summary>
Gets whether the container supports seeking.
</summary>
</member>
<member name="P:NVorbis.Ogg.ContainerReader.WasteBits">
<summary>
Gets the number of bits in the container that are not associated with a logical stream.
</summary>
</member>
<member name="T:NVorbis.BufferedReadStream">
<summary>
A thread-safe, read-only, buffering stream wrapper.
</summary>
</member>
<member name="M:NVorbis.IVorbisStreamStatus.ResetStats">
<summary>
Gets the counters for latency and bitrate calculations, as well as overall bit counts
</summary>
</member>
<member name="P:NVorbis.IVorbisStreamStatus.EffectiveBitRate">
<summary>
Gets the calculated bit rate of audio stream data for the everything decoded so far
</summary>
</member>
<member name="P:NVorbis.IVorbisStreamStatus.InstantBitRate">
<summary>
Gets the calculated bit rate for the last ~1 second of audio
</summary>
</member>
<member name="P:NVorbis.IVorbisStreamStatus.PageLatency">
<summary>
Gets the calculated latency per page
</summary>
</member>
<member name="P:NVorbis.IVorbisStreamStatus.PacketLatency">
<summary>
Gets the calculated latency per packet
</summary>
</member>
<member name="P:NVorbis.IVorbisStreamStatus.SecondLatency">
<summary>
Gets the calculated latency per second of output
</summary>
</member>
<member name="P:NVorbis.IVorbisStreamStatus.OverheadBits">
<summary>
Gets the number of bits read that do not contribute to the output audio
</summary>
</member>
<member name="P:NVorbis.IVorbisStreamStatus.AudioBits">
<summary>
Gets the number of bits read that contribute to the output audio
</summary>
</member>
<member name="P:NVorbis.IVorbisStreamStatus.PagesRead">
<summary>
Gets the number of pages read so far in the current stream
</summary>
</member>
<member name="P:NVorbis.IVorbisStreamStatus.TotalPages">
<summary>
Gets the total number of pages in the current stream
</summary>
</member>
<member name="P:NVorbis.IVorbisStreamStatus.Clipped">
<summary>
Gets whether the stream has been clipped since the last reset
</summary>
</member>
<member name="T:NVorbis.IPacketProvider">
<summary>
Provides packets on-demand for the Vorbis stream decoder.
@ -266,6 +135,103 @@
Occurs when the stream is about to change parameters.
</summary>
</member>
<member name="T:NVorbis.NewStreamEventArgs">
<summary>
Event data for when a new logical stream is found in a container.
</summary>
</member>
<member name="M:NVorbis.NewStreamEventArgs.#ctor(NVorbis.IPacketProvider)">
<summary>
Creates a new instance of <see cref="T:NVorbis.NewStreamEventArgs"/> with the specified <see cref="T:NVorbis.IPacketProvider"/>.
</summary>
<param name="packetProvider">An <see cref="T:NVorbis.IPacketProvider"/> instance.</param>
</member>
<member name="P:NVorbis.NewStreamEventArgs.PacketProvider">
<summary>
Gets new the <see cref="T:NVorbis.IPacketProvider"/> instance.
</summary>
</member>
<member name="P:NVorbis.NewStreamEventArgs.IgnoreStream">
<summary>
Gets or sets whether to ignore the logical stream associated with the packet provider.
</summary>
</member>
<member name="T:NVorbis.Ogg.ContainerReader">
<summary>
Provides an <see cref="T:NVorbis.IContainerReader"/> implementation for basic Ogg files.
</summary>
</member>
<member name="M:NVorbis.Ogg.ContainerReader.#ctor(System.String)">
<summary>
Creates a new instance with the specified file.
</summary>
<param name="path">The full path to the file.</param>
</member>
<member name="M:NVorbis.Ogg.ContainerReader.#ctor(System.IO.Stream,System.Boolean)">
<summary>
Creates a new instance with the specified stream. Optionally sets to close the stream when disposed.
</summary>
<param name="stream">The stream to read.</param>
<param name="closeOnDispose"><c>True</c> to close the stream when <see cref="M:NVorbis.Ogg.ContainerReader.Dispose"/> is called, otherwise <c>False</c>.</param>
</member>
<member name="M:NVorbis.Ogg.ContainerReader.Init">
<summary>
Initializes the container and finds the first stream.
</summary>
<returns><c>True</c> if a valid logical stream is found, otherwise <c>False</c>.</returns>
</member>
<member name="M:NVorbis.Ogg.ContainerReader.Dispose">
<summary>
Disposes this instance.
</summary>
</member>
<member name="M:NVorbis.Ogg.ContainerReader.GetStream(System.Int32)">
<summary>
Gets the <see cref="T:NVorbis.IPacketProvider"/> instance for the specified stream serial.
</summary>
<param name="streamSerial">The stream serial to look for.</param>
<returns>An <see cref="T:NVorbis.IPacketProvider"/> instance.</returns>
<exception cref="T:System.ArgumentOutOfRangeException">The specified stream serial was not found.</exception>
</member>
<member name="M:NVorbis.Ogg.ContainerReader.FindNextStream">
<summary>
Finds the next new stream in the container.
</summary>
<returns><c>True</c> if a new stream was found, otherwise <c>False</c>.</returns>
<exception cref="T:System.InvalidOperationException"><see cref="P:NVorbis.Ogg.ContainerReader.CanSeek"/> is <c>False</c>.</exception>
</member>
<member name="M:NVorbis.Ogg.ContainerReader.GetTotalPageCount">
<summary>
Retrieves the total number of pages in the container.
</summary>
<returns>The total number of pages.</returns>
<exception cref="T:System.InvalidOperationException"><see cref="P:NVorbis.Ogg.ContainerReader.CanSeek"/> is <c>False</c>.</exception>
</member>
<member name="P:NVorbis.Ogg.ContainerReader.StreamSerials">
<summary>
Gets the list of stream serials found in the container so far.
</summary>
</member>
<member name="E:NVorbis.Ogg.ContainerReader.NewStream">
<summary>
Event raised when a new logical stream is found in the container.
</summary>
</member>
<member name="P:NVorbis.Ogg.ContainerReader.PagesRead">
<summary>
Gets the number of pages that have been read in the container.
</summary>
</member>
<member name="P:NVorbis.Ogg.ContainerReader.CanSeek">
<summary>
Gets whether the container supports seeking.
</summary>
</member>
<member name="P:NVorbis.Ogg.ContainerReader.WasteBits">
<summary>
Gets the number of bits in the container that are not associated with a logical stream.
</summary>
</member>
<member name="T:NVorbis.DataPacket">
<summary>
A single data packet from a logical Vorbis stream.
@ -483,6 +449,63 @@
Flag for use by inheritors.
</summary>
</member>
<member name="T:NVorbis.ParameterChangeEventArgs">
<summary>
Event data for when a logical stream has a parameter change.
</summary>
</member>
<member name="M:NVorbis.ParameterChangeEventArgs.#ctor(NVorbis.DataPacket)">
<summary>
Creates a new instance of <see cref="T:NVorbis.ParameterChangeEventArgs"/>.
</summary>
<param name="firstPacket">The first packet after the parameter change.</param>
</member>
<member name="P:NVorbis.ParameterChangeEventArgs.FirstPacket">
<summary>
Gets the first packet after the parameter change. This would typically be the parameters packet.
</summary>
</member>
<member name="M:NVorbis.StreamReadBuffer.Read(System.Int64,System.Byte[],System.Int32,System.Int32)">
<summary>
Reads the number of bytes specified into the buffer given, starting with the offset indicated.
</summary>
<param name="offset">The offset into the stream to start reading.</param>
<param name="buffer">The buffer to read to.</param>
<param name="index">The index into the buffer to start writing to.</param>
<param name="count">The number of bytes to read.</param>
<returns>The number of bytes read.</returns>
</member>
<member name="M:NVorbis.StreamReadBuffer.DiscardThrough(System.Int64)">
<summary>
Tells the buffer that it no longer needs to maintain any bytes before the indicated offset.
</summary>
<param name="offset">The offset to discard through.</param>
</member>
<member name="P:NVorbis.StreamReadBuffer.MinimalRead">
<summary>
Gets or Sets whether to limit reads to the smallest size possible.
</summary>
</member>
<member name="P:NVorbis.StreamReadBuffer.MaxSize">
<summary>
Gets or Sets the maximum size of the buffer. This is not a hard limit.
</summary>
</member>
<member name="P:NVorbis.StreamReadBuffer.BaseOffset">
<summary>
Gets the offset of the start of the buffered data. Reads to offsets before this are likely to require a seek.
</summary>
</member>
<member name="P:NVorbis.StreamReadBuffer.BytesFilled">
<summary>
Gets the number of bytes currently buffered.
</summary>
</member>
<member name="P:NVorbis.StreamReadBuffer.Length">
<summary>
Gets the number of bytes the buffer can hold.
</summary>
</member>
<member name="M:NVorbis.VorbisReader.ReadSamples(System.Single[],System.Int32,System.Int32)">
<summary>
Reads decoded samples from the current logical stream
@ -590,82 +613,59 @@
Gets the total length of the current logical stream
</summary>
</member>
<member name="T:NVorbis.NewStreamEventArgs">
<member name="M:NVorbis.IVorbisStreamStatus.ResetStats">
<summary>
Event data for when a new logical stream is found in a container.
Gets the counters for latency and bitrate calculations, as well as overall bit counts
</summary>
</member>
<member name="M:NVorbis.NewStreamEventArgs.#ctor(NVorbis.IPacketProvider)">
<member name="P:NVorbis.IVorbisStreamStatus.EffectiveBitRate">
<summary>
Creates a new instance of <see cref="T:NVorbis.NewStreamEventArgs"/> with the specified <see cref="T:NVorbis.IPacketProvider"/>.
</summary>
<param name="packetProvider">An <see cref="T:NVorbis.IPacketProvider"/> instance.</param>
</member>
<member name="P:NVorbis.NewStreamEventArgs.PacketProvider">
<summary>
Gets new the <see cref="T:NVorbis.IPacketProvider"/> instance.
Gets the calculated bit rate of audio stream data for the everything decoded so far
</summary>
</member>
<member name="P:NVorbis.NewStreamEventArgs.IgnoreStream">
<member name="P:NVorbis.IVorbisStreamStatus.InstantBitRate">
<summary>
Gets or sets whether to ignore the logical stream associated with the packet provider.
Gets the calculated bit rate for the last ~1 second of audio
</summary>
</member>
<member name="M:NVorbis.StreamReadBuffer.Read(System.Int64,System.Byte[],System.Int32,System.Int32)">
<member name="P:NVorbis.IVorbisStreamStatus.PageLatency">
<summary>
Reads the number of bytes specified into the buffer given, starting with the offset indicated.
</summary>
<param name="offset">The offset into the stream to start reading.</param>
<param name="buffer">The buffer to read to.</param>
<param name="index">The index into the buffer to start writing to.</param>
<param name="count">The number of bytes to read.</param>
<returns>The number of bytes read.</returns>
</member>
<member name="M:NVorbis.StreamReadBuffer.DiscardThrough(System.Int64)">
<summary>
Tells the buffer that it no longer needs to maintain any bytes before the indicated offset.
</summary>
<param name="offset">The offset to discard through.</param>
</member>
<member name="P:NVorbis.StreamReadBuffer.MinimalRead">
<summary>
Gets or Sets whether to limit reads to the smallest size possible.
Gets the calculated latency per page
</summary>
</member>
<member name="P:NVorbis.StreamReadBuffer.MaxSize">
<member name="P:NVorbis.IVorbisStreamStatus.PacketLatency">
<summary>
Gets or Sets the maximum size of the buffer. This is not a hard limit.
Gets the calculated latency per packet
</summary>
</member>
<member name="P:NVorbis.StreamReadBuffer.BaseOffset">
<member name="P:NVorbis.IVorbisStreamStatus.SecondLatency">
<summary>
Gets the offset of the start of the buffered data. Reads to offsets before this are likely to require a seek.
Gets the calculated latency per second of output
</summary>
</member>
<member name="P:NVorbis.StreamReadBuffer.BytesFilled">
<member name="P:NVorbis.IVorbisStreamStatus.OverheadBits">
<summary>
Gets the number of bytes currently buffered.
Gets the number of bits read that do not contribute to the output audio
</summary>
</member>
<member name="P:NVorbis.StreamReadBuffer.Length">
<member name="P:NVorbis.IVorbisStreamStatus.AudioBits">
<summary>
Gets the number of bytes the buffer can hold.
Gets the number of bits read that contribute to the output audio
</summary>
</member>
<member name="T:NVorbis.ParameterChangeEventArgs">
<member name="P:NVorbis.IVorbisStreamStatus.PagesRead">
<summary>
Event data for when a logical stream has a parameter change.
Gets the number of pages read so far in the current stream
</summary>
</member>
<member name="M:NVorbis.ParameterChangeEventArgs.#ctor(NVorbis.DataPacket)">
<member name="P:NVorbis.IVorbisStreamStatus.TotalPages">
<summary>
Creates a new instance of <see cref="T:NVorbis.ParameterChangeEventArgs"/>.
Gets the total number of pages in the current stream
</summary>
<param name="firstPacket">The first packet after the parameter change.</param>
</member>
<member name="P:NVorbis.ParameterChangeEventArgs.FirstPacket">
<member name="P:NVorbis.IVorbisStreamStatus.Clipped">
<summary>
Gets the first packet after the parameter change. This would typically be the parameters packet.
Gets whether the stream has been clipped since the last reset
</summary>
</member>
</members>

File diff suppressed because it is too large Load Diff

View File

@ -1,18 +0,0 @@
<?xml version="1.0"?>
<package xmlns="http://schemas.microsoft.com/packaging/2011/08/nuspec.xsd">
<metadata>
<id>WindowsAPICodePack-Core</id>
<version>1.1</version>
<title>Windows API Code Pack - Core</title>
<authors>Aybe</authors>
<owners>Aybe</owners>
<licenseUrl>http://code.msdn.microsoft.com/WindowsAPICodePack/Project/License.aspx</licenseUrl>
<projectUrl>http://archive.msdn.microsoft.com/WindowsAPICodePack</projectUrl>
<requireLicenseAcceptance>true</requireLicenseAcceptance>
<description>Core library for Windows API Code Pack</description>
<summary>Windows® API Code Pack for Microsoft® .NET Framework provides a source code library that can be used to access some features of Windows 7 and Windows Vista from managed code.</summary>
<releaseNotes>Fixes TaskDialog.Icon bug that wasn't visible unless specified duringTaskDialog.Opened event.</releaseNotes>
<language>en-US</language>
<tags>WindowsAPICodePack</tags>
</metadata>
</package>

File diff suppressed because it is too large Load Diff

View File

@ -1,20 +0,0 @@
<?xml version="1.0"?>
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
<metadata>
<id>WindowsAPICodePack-Shell</id>
<version>1.1</version>
<title>Windows API Code Pack - Shell</title>
<authors>Aybe</authors>
<owners>Aybe</owners>
<licenseUrl>http://code.msdn.microsoft.com/WindowsAPICodePack/Project/License.aspx</licenseUrl>
<projectUrl>http://archive.msdn.microsoft.com/WindowsAPICodePack</projectUrl>
<requireLicenseAcceptance>true</requireLicenseAcceptance>
<description>Shell library for Windows API Code Pack</description>
<summary>Windows® API Code Pack for Microsoft® .NET Framework provides a source code library that can be used to access some features of Windows 7 and Windows Vista from managed code.</summary>
<language>en-US</language>
<tags>WindowsAPICodePack</tags>
<dependencies>
<dependency id="WindowsAPICodePack-Core" version="1.1" />
</dependencies>
</metadata>
</package>

View File

@ -1,6 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<repositories>
<repository path="..\..\GARbro.GUI\packages.config" />
<repository path="..\ArcFormats\packages.config" />
<repository path="..\packages.config" />
</repositories>