We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Version Used:
VS2022 - Version 17.2.0 Preview 6.0 Roslyn: 4.2.0-4.22220.5
Steps to Reproduce:
I'm not sure if this is a Roslyn issue or a msbuild issue. If the latter, please move it over to dotnet/msbuild
Actual Behavior:
Expected Behavior:
Notes:
this only applies to when EnableDefaultItems is set to false, otherwise the same .editorconfig file works as expected and intended
there must be some exclusion of .editorconfig in the msbuild core xml files somewhere, but I cannot find it
I use a modified project file structure due to using BaseOutputPath and BaseIntermediateOutputPath as recommended in such cases: (Setting BaseIntermediateOutputPath correctly in a SDK-based project is hard msbuild#1603 (comment))
<Project> <PropertyGroup> ... <BaseOutputPath>.build\</BaseOutputPath> <BaseIntermediateOutputPath>$(BaseOutputPath).intermediate\</BaseIntermediateOutputPath> <EnableDefaultItems>false</EnableDefaultItems> </PropertyGroup> <Import Project="Sdk.props" Sdk="Microsoft.NET.Sdk" /> <Import Project="Sdk.targets" Sdk="Microsoft.NET.Sdk" /> <ItemGroup> <Compile Include="Source\**\*.cs" /> </ItemGroup> </Project>
The text was updated successfully, but these errors were encountered:
dsplaisted
No branches or pull requests
Version Used:
VS2022 - Version 17.2.0 Preview 6.0
Roslyn: 4.2.0-4.22220.5
Steps to Reproduce:
I'm not sure if this is a Roslyn issue or a msbuild issue. If the latter, please move it over to dotnet/msbuild
Actual Behavior:
(e.g. dotnet_diagnostic.IDE0042.severity = silent)
Expected Behavior:
Notes:
this only applies to when EnableDefaultItems is set to false, otherwise the same .editorconfig file works as expected and intended
there must be some exclusion of .editorconfig in the msbuild core xml files somewhere, but I cannot find it
I use a modified project file structure due to using BaseOutputPath and BaseIntermediateOutputPath as recommended in such cases:
(Setting BaseIntermediateOutputPath correctly in a SDK-based project is hard msbuild#1603 (comment))
The text was updated successfully, but these errors were encountered: