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
Add ability to import shared sections. Similar to what you can do with csproj files:
<Project Sdk="Microsoft.NET.Sdk.Web"> <Import Project="../../buildFiles/NonTest.Build.props" /> <!-- Rest of project files --> </Project>
something like:
<Solution> <Import Solution="../../buildFiles/baseSolution.slnx" /> <!-- Rest of Solution --> </Solution>
where ../../buildFiles/baseSolution.slnx might be:
../../buildFiles/baseSolution.slnx
<Solution> <Configurations> <Platform Name="Any CPU" /> <Platform Name="x64" /> <Platform Name="x86" /> </Configurations> <Folder Name="MySharedStuff"> <File Path="../.editorconfig" /> </Folder> </Solution>
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Add ability to import shared sections. Similar to what you can do with csproj files:
something like:
where
../../buildFiles/baseSolution.slnx
might be:The text was updated successfully, but these errors were encountered: