Skip to content

Commit

Permalink
add project with [email protected]
Browse files Browse the repository at this point in the history
  • Loading branch information
hicksjacobp committed Apr 25, 2024
1 parent 5858afa commit 56114b1
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
bin/
obj/
6 changes: 6 additions & 0 deletions Class1.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
namespace checkout_codeql_test;

public class Class1
{

}
17 changes: 17 additions & 0 deletions checkout-codeql-test.csproj
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<RootNamespace>checkout_codeql_test</RootNamespace>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.1.1">
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
</PackageReference>
</ItemGroup>

</Project>

0 comments on commit 56114b1

Please sign in to comment.