summaryrefslogtreecommitdiff
path: root/OnekoOnline.csproj
diff options
context:
space:
mode:
authorSarah Bradley <git@sarahduck.ca>2023-12-01 20:33:42 -0800
committerSarah Bradley <git@sarahduck.ca>2023-12-01 20:33:42 -0800
commit2793b94040a473538f01723d5ca5f53c4535e2af (patch)
treecb30f0dae20bda6ef9d1c005325bfd9c986b3c8f /OnekoOnline.csproj
What I've got so far
Diffstat (limited to 'OnekoOnline.csproj')
-rw-r--r--OnekoOnline.csproj25
1 files changed, 25 insertions, 0 deletions
diff --git a/OnekoOnline.csproj b/OnekoOnline.csproj
new file mode 100644
index 0000000..57f77e6
--- /dev/null
+++ b/OnekoOnline.csproj
@@ -0,0 +1,25 @@
+<Project Sdk="Microsoft.NET.Sdk">
+
+ <PropertyGroup>
+
+ <OutputType>Exe</OutputType>
+
+ <TargetFramework>net8.0</TargetFramework>
+ <ImplicitUsings>enable</ImplicitUsings>
+ <Nullable>enable</Nullable>
+ <PublishAot>true</PublishAot>
+ <StripSymbols>false</StripSymbols>
+
+ </PropertyGroup>
+
+ <ItemGroup>
+ <PackageReference Include="Raylib-cs" Version="5.0.0" />
+
+ <EmbeddedResource Include="oneko.png" />
+
+ <Content Include="oneko.png" CopyToOutputDirectory="PreserveNewest" />
+ <Content Include="dog.png" CopyToOutputDirectory="PreserveNewest" />
+ <Content Include="tora.png" CopyToOutputDirectory="PreserveNewest" />
+ </ItemGroup>
+
+</Project>