Skip to content
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

Windows 10 uwp support #17

Closed
fgoulet opened this issue May 9, 2016 · 7 comments
Closed

Windows 10 uwp support #17

fgoulet opened this issue May 9, 2016 · 7 comments
Assignees

Comments

@fgoulet
Copy link

fgoulet commented May 9, 2016

I would like to use this nice library in a Windows 10 uwp app. I was not able to compile the class DynamicClassFactory. It seems that the framework uap10.0 lacks support for the classes in System.Reflection.Emit like ModuleBuilder, TypeBuilder to create types at run-time. Any thought on this ? Thank you.

StefH added a commit that referenced this issue May 9, 2016
@StefH
Copy link
Collaborator

StefH commented May 9, 2016

project.json should contain this:

"dotnet5.1": {
            "dependencies": {
                "System.Collections": "4.0.10",
                "System.Collections.Concurrent": "4.0.10",
                "System.Dynamic.Runtime": "4.0.0",
                "System.Reflection.Emit": "4.0.0",
                "System.Reflection.TypeExtensions": "4.0.0",
                "System.Linq.Expressions": "4.0.10",
                "System.Linq.Queryable": "4.0.0"
            }
        },

However, one thing which will not yet work is AppDomain to load assemblies. I need to refactor that completely to use IOC on that code.

See latest code from this project which contains an example UAP app.

If this version is fine, I can also create a NuGet version 1.0.1

@StefH StefH self-assigned this May 9, 2016
@fgoulet
Copy link
Author

fgoulet commented May 9, 2016

Yes, an updated NuGet package would be nice.
Thank you.

StefH added a commit that referenced this issue May 10, 2016
@StefH
Copy link
Collaborator

StefH commented May 15, 2016

Version 1.0.1 has been pushed to NuGet, please test.

@fgoulet
Copy link
Author

fgoulet commented May 16, 2016

I tested with EFCore and everythings seem to work great.
Thanks!

@StefH
Copy link
Collaborator

StefH commented May 16, 2016

OK, can you also test the new 1.0.2 NuGet ?
https://www.nuget.org/packages/System.Linq.Dynamic.Core/1.0.2

@fgoulet
Copy link
Author

fgoulet commented May 16, 2016

1.0.2. works fine for me too.

@StefH
Copy link
Collaborator

StefH commented May 17, 2016

Thanks. I will close issue.

@StefH StefH closed this as completed May 17, 2016
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Development

No branches or pull requests

2 participants