Skip to content

Mark test adapter entry points as autogenerated #2500

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jan 12, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion src/BenchmarkDotNet.TestAdapter/entrypoints/EntryPoint.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
using BenchmarkDotNet.Running;
// <auto-generated>
// Exclude this file from StyleCop analysis. This file isn't generated but is added to projects.
// </auto-generated>

using BenchmarkDotNet.Running;
using System.Reflection;

public class __AutoGeneratedEntryPointClass
Expand Down
6 changes: 5 additions & 1 deletion src/BenchmarkDotNet.TestAdapter/entrypoints/EntryPoint.fs
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
module __AutoGeneratedEntryPointClass
// <auto-generated>
// Exclude this file from StyleCop analysis. This file isn't generated but is added to projects.
// </auto-generated>

module __AutoGeneratedEntryPointClass
open System.Reflection;
open BenchmarkDotNet.Running

Expand Down
6 changes: 5 additions & 1 deletion src/BenchmarkDotNet.TestAdapter/entrypoints/EntryPoint.vb
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
Imports System.Reflection
REM <auto-generated>
REM Exclude this file from StyleCop analysis. This file isn't generated but is added to projects.
REM </auto-generated>

Imports System.Reflection
Imports BenchmarkDotNet.Running

Namespace Global
Expand Down