summaryrefslogtreecommitdiff
path: root/spec/fixtures/dotnet
diff options
context:
space:
mode:
Diffstat (limited to 'spec/fixtures/dotnet')
-rw-r--r--spec/fixtures/dotnet/nuget-csproj/Program.cs12
-rw-r--r--spec/fixtures/dotnet/nuget-csproj/nuget-csproj.csproj7
2 files changed, 19 insertions, 0 deletions
diff --git a/spec/fixtures/dotnet/nuget-csproj/Program.cs b/spec/fixtures/dotnet/nuget-csproj/Program.cs
new file mode 100644
index 0000000..9e98aa4
--- /dev/null
+++ b/spec/fixtures/dotnet/nuget-csproj/Program.cs
@@ -0,0 +1,12 @@
+using System;
+
+namespace nuget_csproj
+{
+ class Program
+ {
+ static void Main(string[] args)
+ {
+ Console.WriteLine("Hello World!");
+ }
+ }
+}
diff --git a/spec/fixtures/dotnet/nuget-csproj/nuget-csproj.csproj b/spec/fixtures/dotnet/nuget-csproj/nuget-csproj.csproj
new file mode 100644
index 0000000..7bdb8cc
--- /dev/null
+++ b/spec/fixtures/dotnet/nuget-csproj/nuget-csproj.csproj
@@ -0,0 +1,7 @@
+<Project Sdk="Microsoft.NET.Sdk">
+ <PropertyGroup>
+ <OutputType>Exe</OutputType>
+ <TargetFramework>netcoreapp3.1</TargetFramework>
+ <RootNamespace>nuget_csproj</RootNamespace>
+ </PropertyGroup>
+</Project>