Jöran Malek
Jöran Malek
Oh … that's why there's a user token. That explains some things, but not all of them.
> We are still waiting for the runner mode to be publicly enabled through VS Test Explorer Ah, didn't know this wan't available from the start (assumed it would be)....
Thanks for the heads-up @Evangelink. I can wait until the 17.10 stable release, as I don't usually install previews just for a feature I'd like to use. In that sense...
Seeing this as well (on 8.5.0) Binlog: [msbuild.zip](https://github.com/ikvmnet/ikvm/files/11486135/msbuild.zip)
So, with `msbuild /restore` this works, waiting and then issuing `msbuild` (without restore) brings this issue up (when using IKVM.NET.Sdk). Looks like NuGet package targets aren't resolved correctly.
Reason for not going any further than 252: The amount of changes triples after that.
Changes: IOUtil calls `initInetAddressIDs(env);` in `Java_sun_nio_ch_IOUtil_initIDs` from `net_util.h`. jdk/src/*/native/sun/nio/ch/IOUtil.c, with new export: ```diff +JNIEXPORT void JNICALL initInetAddressIDs(JNIEnv *env); ```
jni_util.h got new export: ```diff +/* Throw an exception by name, using a given message and the string + * returned by getLastErrorString to construct the detail string. + */...
jdk/src/share/classes/sun/misc/SharedSecrets.java ```diff + public static void setJavaOISAccess(JavaOISAccess access) { + javaOISAccess = access; + } + + public static JavaOISAccess getJavaOISAccess() { + if (javaOISAccess == null) + unsafe.ensureClassInitialized(ObjectInputStream.class); +...
Backport changes in jdk/src/share/classes/java/util/zip/ZipFile.java