Posts

Es werden Posts vom August, 2024 angezeigt.

SharePoint: Hilfe beim Layout mit der neuen Funktion "Design Ideen"

Bild
In SharePoint wurde ein neues Feature eingefügt, um den Bearbeiter einer Seite bei der Umsetzung ansprechender Darstellungen / Designs zu unterstützen. Die neue Funktion nennt sich "Design Ideen" und ist in dem rechten Bearbeitungsbereich integriert. Aktuell gelten für die Funktion folgende Einschränkungen für einen Bereich, damit Ideen generiert und angezeigt werden: 1 Banner-Webpart 1, 2 oder 3 Text-Webparts. 1, 2 oder 3 Text- und Bild-Webparts in gleicher Anzahl D. h. die Funktion wird nur aktiv bzw. kann Ideen liefern, wenn ein Bereich die oben gelisteten Inhalte in der entsprechenden Anzahl und Form enthält. Das folgende Video zeigt kurz die Verwendung der neuen Funktion.

SharePoint Online: Neue Funktionen bei der Seitenbearbeitung

Bild
Seit Juli wird das Feature 124827 (SharePoint: Content Pane for SharePoint Pages and News) ausgerollt, welches eine neue Erfahrung bei der Bearbeitung von SharePoint Seiten bereitstellt. Das neue Feature wird von Microsoft wie folgt beschrieben: Der Inhaltsbereich ist ein neuer Ort für relevante Bereiche, die Autoren bei der Erstellung ihrer Veröffentlichungen unterstützen. Mit der Einführung dieses zentralen Funktionsbereiches wird eine neue Toolbox Autoren dabei helfen, Inhalte schnell zu durchsuchen und hinzuzufügen, um ansprechende Seiten zu erstellen. Der Inhaltsbereich enthält zusätzliche Bereiche wie Konfigurationstools, Designideen usw. In Viva Amplify wird der Inhaltsbereich auch zum Hosten der Auswahl des Vertriebskanals, der Schreibanleitung und der Zielgruppenauswahl verwendet. Das nachfolgende Video verdeutlicht die Neuerungen.

.NET Maui: SecureStorage.Default.GetAsync - not responding (iOS / Android)

In case someone else have the same problem with SecureStorage.Default.GetAsync on iOS change your code to: var mySecureValue = Task.Run(async () => await SecureStorage.Default.GetAsync("MYKEY")).Result;

.NET MAUI - iOS: Warning: unable to build chain to self-signed root for signer iPhone Distribution

Bild
At the moment I'm building a .NET Maui App for iOS and Android devices. For iOS it is necessary to have a valid certificate installed on the remote MAC machine. Because building native iOS applications using .NET Multi-platform requires access to Apple's build tools, which only run on a Mac 🙄. As I started with the developing I was not sure to buy a Mac just for this process but at the end it is worth to have a pysical macOS machine (note: a Mac mini is for the building process enought). The integration in the building process inside Visual Studio 2022 is very good. As soon the Mac machine is available in the local network it is very easy to connect to the machine within Visual Studio. The following screenshot shows the responsible dialog to establish a remote connection to the macOS machine. Connect to a Mac But - of course - not the whole building process ran smooth. During my first try to build the iOS version of my App I was presented with the following error message: