(blog article under construction)
This post is part 1 of a series of 5 on writing C# applications using PowerShell modules of Skype for Business Server 2015.
I used Microsoft Visual Studio Community 2015 running Windows 10 and targeted Windows Desktop Application to .NET Framework 4.6.1.
We assume the “Skype for Business Server 2015 – Administrative Tools” are installed on your machine. they can be installed from the Skype for Business Server 2015 ISO file. After installation there is a directory with module “C:\Program Files\Common Files\Skype for Business Server 2015\ModulesSkypeForBusiness\SkypeForBusiness.psd1”.
In the App.config nothing special, just reference to .NET Framework 4.6.1.
App.config
1 2 3 4 5 6 |
<?xml version="1.0" encoding="utf-8"?> <configuration> <startup> <supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.6.1"/> </startup> </configuration> |