Some checks failed
Avalonia Code Quality / Lint, Analyze & Build (push) Failing after 55s
44 lines
1.1 KiB
C#
44 lines
1.1 KiB
C#
using Avalonia;
|
|
using System;
|
|
using Invoice_App.Models;
|
|
|
|
namespace Invoice_App;
|
|
|
|
class Program
|
|
{
|
|
// Initialization code. Don't use any Avalonia, third-party APIs or any
|
|
// SynchronizationContext-reliant code before AppMain is called: things aren't initialized
|
|
// yet and stuff might break.
|
|
[STAThread]
|
|
public static void Main(string[] args)
|
|
{
|
|
|
|
TestVehicleClass();
|
|
|
|
BuildAvaloniaApp()
|
|
.StartWithClassicDesktopLifetime(args);
|
|
}
|
|
|
|
|
|
private static void TestVehicleClass()
|
|
{
|
|
var testCar = new Vehicle();
|
|
testCar.Make = "BMW";
|
|
testCar.Model = "320i";
|
|
testCar.VinNumber = "ABC123";
|
|
testCar.Kilometers = 50000;
|
|
testCar.RegistrationDate = DateTime.Now;
|
|
testCar.Comments = "Good condition";
|
|
|
|
// No console output for now - just creating the object to test compilation
|
|
}
|
|
|
|
// Avalonia configuration, don't remove; also used by visual designer.
|
|
public static AppBuilder BuildAvaloniaApp()
|
|
=> AppBuilder.Configure<App>()
|
|
.UsePlatformDetect()
|
|
.WithInterFont()
|
|
.LogToTrace();
|
|
|
|
}
|