-
Notifications
You must be signed in to change notification settings - Fork 527
Add a Modern PCL project that also support CoreClr #200
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from 4 commits
3dce0d8
5749dd8
c6ee924
6bbe40b
531bb82
3248d8e
c5a7bb8
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -19,6 +19,22 @@ | |
| <summary>IoC container for .NET</summary> | ||
| <releaseNotes>Xamarin support for iOS and Android</releaseNotes> | ||
| <tags>Ninject ioc di portable pcl xamarin ios android monotouch monoandroid</tags> | ||
| <dependencies> | ||
| <group targetFramework="dotnet"> | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I would recommend using
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I actually tried. But for some reason it didn't work. |
||
| <dependency id="System.Collections" version="4.0.10" /> | ||
| <dependency id="System.ComponentModel" version="4.0.0" /> | ||
| <dependency id="System.Diagnostics.Debug" version="4.0.10" /> | ||
| <dependency id="System.IO" version="4.0.10" /> | ||
| <dependency id="System.Linq" version="4.0.0" /> | ||
| <dependency id="System.Linq.Expressions" version="4.0.10" /> | ||
| <dependency id="System.Reflection" version="4.0.10" /> | ||
| <dependency id="System.Reflection.Extensions" version="4.0.0" /> | ||
| <dependency id="System.Runtime" version="4.0.20" /> | ||
| <dependency id="System.Runtime.Extensions" version="4.0.10" /> | ||
| <dependency id="System.Threading" version="4.0.10" /> | ||
| <dependency id="System.Threading.Timer" version="4.0.0" /> | ||
| </group> | ||
| </dependencies> | ||
| </metadata> | ||
| <files> | ||
|
|
||
|
|
@@ -59,6 +75,10 @@ | |
| <file src="src\Ninject\bin\Android\Release\Ninject.pdb" target="lib\monoandroid\Ninject.pdb" /> | ||
| <file src="src\Ninject\bin\Android\Release\Ninject.xml" target="lib\monoandroid\Ninject.xml" /> | ||
|
|
||
| <!-- dotnet --> | ||
| <file src="src\Ninject\bin\dotnet\Release\Ninject.dll" target="lib\dotnet\Ninject.dll" /> | ||
| <file src="src\Ninject\bin\dotnet\Release\Ninject.pdb" target="lib\dotnet\Ninject.pdb" /> | ||
| <file src="src\Ninject\bin\dotnet\Release\Ninject.xml" target="lib\dotnet\Ninject.xml" /> | ||
|
|
||
| <file src="src\**\*.cs" target="src" exclude="src\_ReSharper.*\**\*.*;packages\**\*.*;src\**\Debug\**\*.*;" /> | ||
| </files> | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I don't understand why adding a Modern PCL project creates so many configurations.