This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Tuesday Nov 14 | |
• 10am CST - Keynote: Welcome to .NET 8 | |
• 1pm CST - Performance Improvements in .NET 8, ASP.NET Core, and .NET MAUI | |
• 5:45pm CST - What’s New in .NET MAUI | |
Wednesday Nov 15 | |
• 5:30pm CST - Build hybrid apps with .NET MAUI | |
• 11pm CST - Spatial Data with Entity Framework Core and .NET MAUI | |
• 12:30am CST - Reactive programming with .NET MAUI | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
sudo rm -rf "/Applications/Visual Studio.app" | |
rm -rf ~/Library/Caches/VisualStudio | |
rm -rf ~/Library/Preferences/VisualStudio | |
rm -rf ~/Library/Preferences/Visual\ Studio | |
rm -rf ~/Library/Logs/VisualStudio | |
rm -rf ~/Library/VisualStudio | |
rm -rf ~/Library/Preferences/Xamarin/ | |
rm -rf ~/Library/Application\ Support/VisualStudio | |
rm -rf ~/Library/Application\ Support/VisualStudio/7.0/LocalInstall/Addins/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="utf-8"?> | |
<CodeTemplates version="3.0"> | |
<CodeTemplate version="2.0"> | |
<Header> | |
<_Group>C#</_Group> | |
<Version /> | |
<MimeType>text/x-csharp</MimeType> | |
<Shortcut>test</Shortcut> | |
<_Description /> | |
<TemplateType>Unknown</TemplateType> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[Test] | |
public void $UnitUnderTest$_$StateUnderTest$_$ExpectedResult$() | |
{ | |
// Arrange | |
// Act | |
// Assert | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Script to clean out the old archives found in the Xcode/Archives folder | |
# Variables | |
archivesFolder="/Users/[your username goes here]/Library/Developer/Xcode/Archives" | |
echo "*******************************************************" | |
echo "* Xcode Archives Cleaner 2000" | |
echo "*******************************************************" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Script to disable the iOS Simulator app from showing the "Do you want the application xxxx to accept incoming network connections?" pop-up every time the app is run | |
echo "> Enter password to temporarily shut firewall off" | |
sudo /usr/libexec/ApplicationFirewall/socketfilterfw --setglobalstate off | |
echo "> Add Xcode as a firewall exception" | |
/usr/libexec/ApplicationFirewall/socketfilterfw --add /Applications/Xcode.app/Contents/MacOS/Xcode |