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
// Project requires the following packages: | |
// <PackageReference Include="Csla" Version="8.0.0" /> (or latest) | |
// <PackageReference Include="System.Data.SQLite" Version="1.0.118" /> | |
using Csla; | |
using Csla.Configuration; | |
using Microsoft.Extensions.DependencyInjection; | |
using MyCode; | |
using System.Data.SQLite; |
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 | |
PATH=$PATH:"/c/Program Files (x86)/Microsoft Visual Studio/2019/Enterprise/MSBuild/Current/Bin" | |
alias az='winpty az.cmd' | |
alias minikube='winpty minikube.exe' | |
alias powershell='winpty powershell.exe' | |
alias ps1='winpty powershell.exe' | |
alias drme="docker.exe image ls | awk '/<none>/ { print $3}' | xargs docker.exe image rm -f" | |
alias cf='winpty cf.exe' | |
alias python='winpty python' |
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
@page | |
@model WebApplication3.Pages.MyList.CreateModel | |
@{ | |
ViewData["Title"] = "Create"; | |
} | |
<h2>Create</h2> | |
<h4>MyItem</h4> |
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
using System; | |
using System.Collections.Generic; | |
using System.Globalization; | |
using System.Text; | |
using Xamarin.Forms; | |
namespace ProjectTracker.Ui.Xamarin.Xaml | |
{ | |
public class BoolColorConverter : IValueConverter | |
{ |
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
@* Goes in Views\PersonList *@ | |
@using EditableListMvc.Models | |
@model IEnumerable<Person> | |
@{ | |
ViewBag.Title = "Person List"; | |
} | |
<h2>Person List</h2> |