summaryrefslogtreecommitdiff
path: root/spec/fixtures/dotnet
diff options
context:
space:
mode:
authorCan Eldem <celdem@gitlab.com>2020-08-19 12:04:46 +0000
committerCan Eldem <celdem@gitlab.com>2020-08-19 12:04:46 +0000
commit99a89248b2e6c08bf7a5c6c7950793b1418b9555 (patch)
tree9f0ad8087db423cf57b1e96451a0c977422a50d7 /spec/fixtures/dotnet
parent24695063d1ba9a73ba92a44fae0813d5492cf29c (diff)
parenta54789bcfe9e05ab42dfb6e03457279384e343fe (diff)
Merge branch 'upgrade-license-finder' into 'master'v3.23.0
Upgrade license finder to 6.8.1 See merge request gitlab-org/security-products/license-management!209
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>