Skip to content

Commit

Permalink
Add csproj with nuget packages
Browse files Browse the repository at this point in the history
  • Loading branch information
Greg-Smulko committed Mar 7, 2020
1 parent 2925b1b commit a1de058
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 0 deletions.
12 changes: 12 additions & 0 deletions Program.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
using System;

namespace renovate_test
{
class Program
{
static void Main(string[] args)
{
Console.WriteLine("Hello World!");
}
}
}
15 changes: 15 additions & 0 deletions renovate-test.csproj
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>netcoreapp3.1</TargetFramework>
<RootNamespace>renovate_test</RootNamespace>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="fluentassertions" Version="5.7.0" />
<PackageReference Include="Newtonsoft.Json" Version="11.0.1" />
<PackageReference Include="nunit" Version="3.9.0" />
</ItemGroup>

</Project>

0 comments on commit a1de058

Please sign in to comment.