Skip to content

Commit 0f29ce6

Browse files
committed
Bump packages
1 parent 3414330 commit 0f29ce6

File tree

3 files changed

+54
-25
lines changed

3 files changed

+54
-25
lines changed

README.md

Lines changed: 48 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,48 @@
1-
# Introduction
2-
TODO: Give a short introduction of your project. Let this section explain the objectives or the motivation behind this project.
3-
4-
# Getting Started
5-
TODO: Guide users through getting your code up and running on their own system. In this section you can talk about:
6-
1. Installation process
7-
2. Software dependencies
8-
3. Latest releases
9-
4. API references
10-
11-
# Build and Test
12-
TODO: Describe and show how to build your code and run the tests.
13-
14-
# Contribute
15-
TODO: Explain how other users and developers can contribute to make your code better.
16-
17-
If you want to learn more about creating good readme files then refer the following [guidelines](https://www.visualstudio.com/en-us/docs/git/create-a-readme). You can also seek inspiration from the below readme files:
18-
- [ASP.NET Core](https://github.com/aspnet/Home)
19-
- [Visual Studio Code](https://github.com/Microsoft/vscode)
20-
- [Chakra Core](https://github.com/Microsoft/ChakraCore)
1+
# Dime.Ext
2+
3+
[![Build Status](https://dev.azure.com/dimenicsbe/Utilities/_apis/build/status/Ext%20-%20MAIN%20-%20CI?branchName=master)](https://dev.azure.com/dimenicsbe/Utilities/_build/latest?definitionId=66&branchName=master)
4+
5+
## Introduction
6+
7+
.NET classes for Sencha ExtJS.
8+
9+
## Getting Started
10+
11+
- You must have Visual Studio 2019 Community or higher.
12+
- The dotnet cli is also highly recommended.
13+
14+
## About this project
15+
16+
.NET classes for Sencha ExtJS filters and sorters.
17+
18+
## Build and Test
19+
20+
- Run dotnet restore
21+
- Run dotnet build
22+
- Run dotnet test
23+
24+
## Installation
25+
26+
Use the package manager NuGet to install Dime.System:
27+
28+
`dotnet add package Dime.System`
29+
30+
## Usage
31+
32+
``` csharp
33+
using Dime.ExtJs;
34+
35+
public IEnumerable<MyData> Get(string filterString)
36+
{
37+
Filter filterObject = JsonConvert.DeserializeObject<Filter>(filterString);
38+
}
39+
```
40+
41+
## Contributing
42+
43+
Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.
44+
Please make sure to update tests as appropriate.
45+
46+
## License
47+
48+
MIT

src/core/Dime.ExtJs.csproj

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,22 +9,23 @@
99

1010
<PropertyGroup>
1111
<Authors>Dimenics</Authors>
12-
<TargetFrameworks>netstandard2.1;net461</TargetFrameworks>
12+
<TargetFrameworks>netstandard2.0;net461</TargetFrameworks>
1313
<AssemblyName>Dime.ExtJs</AssemblyName>
1414
<PackageId>Dime.ExtJs</PackageId>
1515
<PackageIconUrl>http://dimenuget.azurewebsites.net/Images/dimenuget.png</PackageIconUrl>
1616
<GenerateAssemblyConfigurationAttribute>false</GenerateAssemblyConfigurationAttribute>
1717
<GenerateAssemblyCompanyAttribute>false</GenerateAssemblyCompanyAttribute>
1818
<GenerateAssemblyProductAttribute>false</GenerateAssemblyProductAttribute>
1919
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
20-
<Version>1.1.0.0</Version>
20+
<Version>1.1.1</Version>
2121
<Description>.NET classes for ExtJS operations such as grouping, sorting and filtering</Description>
22-
<Copyright>Copyright © 2019</Copyright>
22+
<Copyright>Copyright © 2020</Copyright>
2323
<NeutralLanguage>en</NeutralLanguage>
2424
<IncludeSource>True</IncludeSource>
2525
<IncludeSymbols>True</IncludeSymbols>
2626
<RootNamespace>Dime.ExtJs</RootNamespace>
27-
<AssemblyVersion>1.1.0.0</AssemblyVersion>
27+
<AssemblyVersion>1.1.1.0</AssemblyVersion>
28+
<PackageLicenseExpression>MIT</PackageLicenseExpression>
2829
</PropertyGroup>
2930

3031
<ItemGroup>

src/core/Properties/AssemblyInfo.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
// associated with an assembly.
77
[assembly: AssemblyConfiguration("")]
88
[assembly: AssemblyCompany("Dimenics")]
9-
[assembly: AssemblyProduct("Dime")]
9+
[assembly: AssemblyProduct("")]
1010
[assembly: AssemblyTrademark("")]
1111

1212
// Setting ComVisible to false makes the types in this assembly not visible

0 commit comments

Comments
 (0)