Skip to content

Instantly share code, notes, and snippets.

@yfakariya
Created July 9, 2016 06:58
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save yfakariya/daae4ff328ef8daea9c3600e15414e37 to your computer and use it in GitHub Desktop.
Save yfakariya/daae4ff328ef8daea9c3600e15414e37 to your computer and use it in GitHub Desktop.
ReactivePropertyのproject.json書いてみた
// 本体のほう
{
"version": "1.0.0-*",
"dependencies": {
"System.Runtime": "4.1.0",
"System.Collections": "4.0.11",
"System.ObjectModel": "4.0.12",
"System.Reflection": "4.1.0",
"System.Reflection.Extensions": "4.0.1",
"System.Linq": "4.1.0",
"System.Linq.Expressions": "4.1.0",
"System.Runtime.Serialization.Primitives": "4.1.1",
"System.Runtime.Serialization.Xml": "4.1.1",
"System.Xml.ReaderWriter": "4.0.11",
"System.Reactive.Core": "3.0.0",
"System.Reactive.Linq": "3.0.0",
"System.Reactive.Interfaces": "3.0.0",
"System.Reactive": "3.0.0",
"System.Reactive.PlatformServices": "3.0.0"
},
"buildOptions": {
"compile": {
"include": [
"../ReactiveProperty.Portable-NET45+WINRT+WP8/**/*.cs",
"Properties/AssemblyInfo.cs"
],
"exclude": [
"../**/AssemblyInfo.cs"
]
}
},
"frameworks": {
"netstandard1.0": {
}
}
}
// DataAnnotationsのほう
{
"version": "1.0.0-*",
"buildOptions": {
"compile": {
"include": [
"../ReactiveProperty.Portable-NET45+WINRT/ReactivePropertyExtensions.cs"
]
}
},
"dependencies": {
"ReactiveProperty.NetStandard": "1.0.0-*",
"System.ComponentModel.Annotations": "4.1.0"
},
"frameworks": {
"netstandard1.4": {
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment