Cleaning Up Template Remnants

This commit is contained in:
2026-07-12 12:18:31 -05:00
parent 88c8e60efa
commit 05a6eb9d3c
3 changed files with 0 additions and 38 deletions
-12
View File
@@ -1,12 +0,0 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
<ItemGroup>
<None Include="flake.nix" />
<None Include=".envrc" />
</ItemGroup>
</Project>
-17
View File
@@ -1,17 +0,0 @@
# Makefile for .NET template
.PHONY: build run clean
build:
dotnet build
run:
dotnet run
clean:
dotnet clean
# Flatpak build target
.PHONY: flatpak-build
flatpak-build:
flatpak-builder --force-clean build-flatpak flatpak/app.flatpak.json
-9
View File
@@ -1,9 +0,0 @@
using System;
class Program
{
static void Main(string[] args)
{
Console.WriteLine("Hello from .NET skeletal app. Edit Program.cs to get started!");
}
}