You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Builds: add protobuf-net MyGet feed as a push target
This will make https://www.myget.org/F/protobuf-net/api/v3/index.json light up for all protobuf-net packages once tests are greed and flowing.
* README updates for v3
WIP tweaks to README for v3 and exposing packages more readily since there are multiple now.
* Exclude VB and CSharp test projects
* Examples.csproj cleanup
* One more
* Skip long running tests in CI
This runs everything locally, but not the huge and disruptive ones in Appveyor - just an idea (and happy to revert) /cc @mgravell
Copy file name to clipboardExpand all lines: README.md
+16-10
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,7 @@
1
1
# protobuf-net
2
-
protobuf-net is a contract based serializer for .NET code, that happens to write data in the "protocol buffers" serialization format engineered by Google. The API, however, is very different to Google's, and follows typical .NET patterns (it is broadly comparable, in usage, to XmlSerializer, DataContractSerializer, etc). It should work for most .NET languages that write standard types and can use attributes.
2
+
protobuf-net is a contract based serializer for .NET code, that happens to write data in the "protocol buffers" serialization format engineered by Google. The API, however, is very different to Google's, and follows typical .NET patterns (it is broadly comparable, in usage, to `XmlSerializer`, `DataContractSerializer`, etc). It should work for most .NET languages that write standard types and can use attributes.
@@ -10,17 +12,21 @@ To understand how protobuf-net relates to protobuf [see here](https://protobuf-n
10
12
---
11
13
12
14
## Supported Runtimes
13
-
- .NET Framework 2.0+
14
-
- .NET Standard 1.0+ (note that 1.0 is very restricted, and suits iOS etc; use the highest .NET Standard that works for your platform)
15
-
- UAP 10.0(+?)
16
-
17
-
It is possible to build for more specific TFMs, but *right now* I've simplified the build to those. If you need help
18
-
with a custom build: let me know.
15
+
- .NET Framework 4.6.1+
16
+
- .NET Standard 2.0+
19
17
20
18
## Runtime Installation
21
19
22
-
Packages are available on NuGet: [`protobuf-net`](https://www.nuget.org/packages/protobuf-net). You can use the following command in the Package Manager Console:
23
-
`Install-Package protobuf-net`
20
+
All stable and some pre-release packages are available on NuGet. CI Builds are available via MyGet (feed URL: `https://www.myget.org/F/protobuf-net/api/v3/index.json `).
21
+
22
+
You can use the following command in the Package Manager Console:
@@ -123,4 +129,4 @@ In v2, everything that can be done with attributes can also be configured at run
123
129
124
130
## Support
125
131
126
-
I try to be responsive to [Stack Overflow questions in the `protobuf-net` tag](https://stackoverflow.com/questions/tagged/protobuf-net), [issues logged on github](https://github.com/protobuf-net/protobuf-net), [email](mailto:marc.gravell@gmail.com), etc. I don't currently offer a paid support channel. If I've helped you, feel free to [buy me a coffee](https://buymeacoff.ee/marcgravell).
132
+
I try to be responsive to [Stack Overflow questions in the `protobuf-net` tag](https://stackoverflow.com/questions/tagged/protobuf-net), [issues logged on GitHub](https://github.com/protobuf-net/protobuf-net), [email](mailto:marc.gravell@gmail.com), etc. I don't currently offer a paid support channel. If I've helped you, feel free to [buy me a coffee](https://buymeacoff.ee/marcgravell).
0 commit comments