Skip to content

Commit da0a676

Browse files
JMJM
authored andcommitted
Added a nuspec file and a nuspec readme file.
1 parent 3ca0abd commit da0a676

3 files changed

Lines changed: 54 additions & 0 deletions

File tree

DataPresenter.DataSources.OData/DataPresenter.DataSources.OData/DataPresenter.DataSources.OData.csproj

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -109,8 +109,12 @@
109109
<Compile Include="Properties\AssemblyInfo.cs" />
110110
</ItemGroup>
111111
<ItemGroup>
112+
<None Include="DataPresenter.DataSources.OData.nuspec" />
112113
<None Include="packages.config" />
113114
</ItemGroup>
115+
<ItemGroup>
116+
<None Include="readme.txt" />
117+
</ItemGroup>
114118
<Import Project="..\..\ODataDataProvider\ODataDataProvider.projitems" Label="Shared" />
115119
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
116120
<Import Project="..\packages\Microsoft.Bcl.Build.1.0.21\build\Microsoft.Bcl.Build.targets" Condition="Exists('..\packages\Microsoft.Bcl.Build.1.0.21\build\Microsoft.Bcl.Build.targets')" />
Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
2+
<metadata>
3+
<id>Infragistics.DataPresenter.DataSources.OData</id>
4+
<title>OData DataSource Reference Implementation for Infragistics XamDataPresenter</title>
5+
<version>1.0.0-beta</version>
6+
<authors>Infragistics, Inc.</authors>
7+
<owners>Infragistics, Inc</owners>
8+
<description>Installs the DataPresenter.DataSources.OData.dll assembly which contains a reference implementation for an OData data source based on the AsyncPagingDataSourceBase class delivered in InfragisticsWPF4.DataPresenter.DataSources.Async.v16.1</description>
9+
<projectUrl>https://github.com/Infragistics/DataSource-Reference-Implementations/tree/master/DataPresenter.DataSources.OData</projectUrl>
10+
<licenseUrl>https://github.com/Infragistics/DataSource-Reference-Implementations/blob/master/LICENSE</licenseUrl>
11+
<iconUrl>http://www.infragistics.com/tempicon.png</iconUrl>
12+
<tags>OData DataSource Asynchronous Paging XamDataCards XamDataCarousel XamDataPresenter XamDataGrid Grid DataGrid Presenter Cards</tags>
13+
<requireLicenseAcceptance>false</requireLicenseAcceptance>
14+
<frameworkAssemblies>
15+
<frameworkAssembly assemblyName="InfragisticsWPF4.DataPresenter.DataSources.Async.v$naVersionMajor$.$naVersionMinor$, Version=$naVersionFull$, Culture=neutral, PublicKeyToken=7dd5c3163f2cd0cb"/>
16+
<frameworkAssembly assemblyName="InfragisticsWPF4.DataVisualization.v$naVersionMajor$.$naVersionMinor$, Version=$naVersionFull$, Culture=neutral, PublicKeyToken=1102135f7483647e"/>
17+
<frameworkAssembly assemblyName="InfragisticsWPF4.v$naVersionMajor$.$naVersionMinor$, Version=$naVersionFull$, Culture=neutral, PublicKeyToken=7dd5c3163f2cd0cb"/>
18+
</frameworkAssemblies>
19+
<dependencies>
20+
<dependency id="Simple.OData.Client" version="4.13.0"/>
21+
</dependencies>
22+
</metadata>
23+
<files>
24+
<file src="bin\$configuration$\DataPresenter.DataSources.OData.dll" target="lib"/>
25+
<file src="readme.txt" target="" />
26+
</files>
27+
</package>
Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
=====================================================
2+
Package notes for DataPresenter.DataSources.OData.dll
3+
=====================================================
4+
5+
This package contains a reference implementation of an OData data source that is built on the AsyncPagingDataSourceBase class delivered in InfragisticsWPF4.DataPresenter.DataSources.Async.v16.1 (shipped as part of Infragistics NetAdvantage 16.1)
6+
7+
This reference implementation also depends on the Simple.OData.Client NuGet package (not authored by Infragistics), and has been tested with v4.13.0 of that package.
8+
9+
When installed into a Visual Studio WPF project this package will add project references to the following Infragistics assemblies which are assumed to be installed in the local machine's GAC as the result of Trial or licensed installation of Infragistics NetAdvantage 16.1 (they are NOT included in this package):
10+
11+
- InfragisticsWPF4.DataPresenter.DataSources.Async.v16.1
12+
- InfragisticsWPF4.DataVisualization.v16.1
13+
- InfragisticsWPF4.v16.1
14+
15+
When installed into a Visual Studio WPF project, this package will also download the Simple.OData.Client package and add a reference to that package's primary assembly:
16+
- Simple.OData.Client.Net40
17+
18+
as well as a number of Microsoft-authored packages on which it depends.
19+
20+
If you would like to explore a sample project that shows the OData data source being used with the XamDataPresenter you can download a sample project here:
21+
https://github.com/Infragistics/DataSource-Reference-Implementations/tree/master/DataPresenter.DataSources.OData/DataPresenter.DataSources.OData.SampleApp
22+
23+
-END-

0 commit comments

Comments
 (0)