Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/dotnet/runtime.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTomáš Rylek <trylek@microsoft.com>2021-12-04 23:41:12 +0300
committerGitHub <noreply@github.com>2021-12-04 23:41:12 +0300
commitdb1710af3625b58921069916aeb821f04baa30c5 (patch)
treeba46c06bff0502a2ce3cb4879ca1f7eeec3ce04f /src/tests/ilverify
parent1a4d0c56daafa9a47d30ea9c80f14a39ab3580c2 (diff)
Remove explicit Exe output types from tests without Main (#62361)
These three projects apparently already use the [Fact] model; this causes trouble in the switch-over to support new-style merged test wrappers as the system believes these are standalone tests due to the explicit Exe output type specification and and they fail to provide a Main method. Thanks to Jeremy's source generation change we can now tag them as "new-style tests". Thanks Tomas
Diffstat (limited to 'src/tests/ilverify')
-rw-r--r--src/tests/ilverify/ILVerificationTests.csproj1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/tests/ilverify/ILVerificationTests.csproj b/src/tests/ilverify/ILVerificationTests.csproj
index 049390bad80..55d08e4d157 100644
--- a/src/tests/ilverify/ILVerificationTests.csproj
+++ b/src/tests/ilverify/ILVerificationTests.csproj
@@ -1,6 +1,5 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
- <OutputType>Exe</OutputType>
<OutputPath>$(BaseOutputPathWithConfig)ilverify\</OutputPath>
<CLRTestPriority>1</CLRTestPriority>
<!-- The test uses xunit directly and it fails to find the test assembly for some reason -->