diff options
author | Ian C <ianc@noddybox.co.uk> | 2024-03-22 15:47:29 +0000 |
---|---|---|
committer | Ian C <ianc@noddybox.co.uk> | 2024-03-22 15:47:29 +0000 |
commit | 1f61b2afecb32b5d75268642a49ce9556f505796 (patch) | |
tree | 617cc8e789fb63f9123a6e6f53a9bafa6cc38bb6 /download.csproj |
Inital commit of dotnet new
Diffstat (limited to 'download.csproj')
-rw-r--r-- | download.csproj | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/download.csproj b/download.csproj new file mode 100644 index 0000000..13d8127 --- /dev/null +++ b/download.csproj @@ -0,0 +1,9 @@ +<Project Sdk="Microsoft.NET.Sdk.Web">
+
+ <PropertyGroup>
+ <TargetFramework>net8.0</TargetFramework>
+ <Nullable>enable</Nullable>
+ <ImplicitUsings>enable</ImplicitUsings>
+ </PropertyGroup>
+
+</Project>
|