Blog Archive

Nuget Packages with Native Libraries

23 minute read

This post is about creating a NuGet package which includes native libraries for Android. I am going to assume that you have a few things in place:

MSVC Crossplatform Development Part 15

3 minute read

TODO This is the end of this series for now. Let’s go over what should be next. So far, we have finished the following: Native C++ library for Windows ...

MSVC Crossplatform Development Part 14

6 minute read

Xamarin Forms Application The new PCL library will now be used in a Xamarin Forms application. We will only be able to run it from android right now, but thi...

MSVC Crossplatform Development Part 11

6 minute read

Android .NET Library The first step to getting this library to work with Xamarin Forms will be a .NET library for every platform. We’ll start with Android.

MSVC Crossplatform Development Part 9

3 minute read

.NET Universal Library In this part we will create another .NET library for Universal Windows Applications. This library can be used to create UWP applicatio...

MSVC Crossplatform Development Part 7

7 minute read

.NET framework assembly In this part, we will create a .NET framework library. This library can be used from within a WPF application. It will only work on W...

MSVC Crossplatform Development Part 5

11 minute read

Android Native App To test the android library, we’ll add another application. Android Native Applications are running in an OpenGL loop. Without extra libra...

MSVC Crossplatform Development Part 4

3 minute read

C++ Android Library So far we didn’t do anything crossplatformy, but that’s gonna change now. In this part, we will create a dynamic native library for Andro...

MSVC Crossplatform Development Part 3

10 minute read

C++ Application So far, we got a Shared Items Project and a Windows DLL. In this part a console application will be added. This application offers the most d...

MSVC Crossplatform Development Part 2

4 minute read

C++ Windows DLL We’ve got a Shared Items Project ready, but no actual library has been built so far. In this part we will add a Windows DLL in native C++. I...

MSVC Crossplatform Development Part 1

13 minute read

C++ Library Code This is the first part of a series about crossplatform development with Visual Studio. A small C++ library will be created and ported to all...