c# - Use Async, Await with VS2013 Target - .NET 4 -
i working 3rd party api uses .net 4
. utilize async/await features in class library. installed microsoft.bcl.async
nuget. have few questions regarding deployment:
1) upon installing microsoft.bcl.async
, have number of references added project (microsoft.threading.tasks
, microsoft.threading.tasks.extensions
..). there app.config file created. deployment requirements?
2) how deploy app.config file class library goes in installation directory of 3rd party app. need add together xml app.config application's config?
3) need install microsoft.bcl.async
on projects reference project mentioned?
environment:
visual studio express 2013 .net 4
1) upon installing microsoft.bcl.async, have number of references added project (microsoft.threading.tasks, microsoft.threading.tasks.extensions..). there app.config file created. deployment requirements?
deploy dlls , app.config.
2) how deploy app.config file class library goes in installation directory of 3rd party app. need add together xml app.config application's config?
yes.
3) need install microsoft.bcl.async on projects reference project mentioned?
possibly. best practice, install microsoft.bcl.build in projects. generate build warnings notifying if need install references other projects.
c# .net
No comments:
Post a Comment