Skip to content
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

Remove closed issues from issues.targets #75363

Merged
merged 26 commits into from
Oct 6, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
016f51f
Remove closed issues from issues.targets
eduardo-vp Sep 9, 2022
26ee5a2
Add new line at the end
eduardo-vp Sep 9, 2022
464d6c6
Add <Issue>Won't fix https://github.com/dotnet/corert/issues/2396</Is…
eduardo-vp Sep 9, 2022
12b5205
Add removed issues #41519 but replaced with #64127
eduardo-vp Sep 9, 2022
45350ff
Adding issues that were reopened
eduardo-vp Sep 14, 2022
43f8469
Merge branch 'main' of https://github.com/eduardo-vp/runtime into upd…
eduardo-vp Sep 14, 2022
445f356
Adding Issue https://github.com/dotnet/runtime/issues/41520 under /JI…
eduardo-vp Sep 19, 2022
a68d171
Adding https://github.com/dotnet/runtime/issues/34383 back. Issue was…
eduardo-vp Sep 19, 2022
4a94cb2
Removing https://github.com/dotnet/runtime/issues/34383 exclusion fro…
eduardo-vp Sep 19, 2022
c17ad42
Removing https://github.com/dotnet/runtime/issues/41520 exclusion
eduardo-vp Sep 19, 2022
5fbb37b
Make test projects unsupported for mono
eduardo-vp Sep 20, 2022
79b2f57
Removing unsupported on mono mark in CheckProjects.csproj
eduardo-vp Sep 20, 2022
cfe9180
Revert "Removing https://github.com/dotnet/runtime/issues/41520 exclu…
eduardo-vp Sep 21, 2022
b540c35
Update issue text
eduardo-vp Sep 22, 2022
c4c46ca
Adding issue https://github.com/dotnet/runtime/issues/43461 back
eduardo-vp Sep 22, 2022
2f0d6c5
Merge branch 'main' of https://github.com/eduardo-vp/runtime into upd…
eduardo-vp Sep 23, 2022
ced1c28
Exclude arm in Interop/PInvoke/Varargs/VarargsTest.csproj
eduardo-vp Sep 23, 2022
24d72a6
Issue https://github.com/dotnet/runtime/issues/5933 reopened
eduardo-vp Sep 29, 2022
f83bb10
Merge branch 'main' of https://github.com/eduardo-vp/runtime into upd…
eduardo-vp Sep 29, 2022
63d1dd1
Add issue https://github.com/dotnet/runtime/issues/52977
eduardo-vp Oct 1, 2022
d21e691
Adding issue https://github.com/dotnet/runtime/issues/52977
eduardo-vp Oct 2, 2022
06616a4
Adding back https://github.com/dotnet/runtime/issues/12979
eduardo-vp Oct 3, 2022
4ed84af
Merge branch 'main' of https://github.com/eduardo-vp/runtime into upd…
eduardo-vp Oct 3, 2022
213df27
Add exclusions arm can't support
eduardo-vp Oct 4, 2022
d2ac0ac
Add exclusions of the kind 'x does not support y'
eduardo-vp Oct 4, 2022
0f56b47
Merge branch 'main' into update/issues.targets
eduardo-vp Oct 6, 2022
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
2 changes: 2 additions & 0 deletions src/tests/Interop/PInvoke/Varargs/VarargsTest.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<!-- Varargs/ArgIterator marshalling unsupported outside of windows -->
<CLRTestTargetUnsupported Condition="'$(TargetsWindows)' != 'true'">true</CLRTestTargetUnsupported>
<!-- Test unsupported on arm32 targets -->
<CLRTestTargetUnsupported Condition="'$(TargetArchitecture)' == 'arm' or '$(TargetArchitecture)' == 'armel'">true</CLRTestTargetUnsupported>
</PropertyGroup>
<ItemGroup>
<Compile Include="*.cs" />
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk.IL">
<PropertyGroup>
<OutputType>Exe</OutputType>
<CLRTestTargetUnsupported Condition="'$(RuntimeFlavor)' != 'coreclr'">true</CLRTestTargetUnsupported>
</PropertyGroup>
<PropertyGroup>
<DebugType>PdbOnly</DebugType>
Expand Down
Loading