You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When trying to parse a solution file which contains an SQL Server Integration Services (SSIS) Project (i.e. *.dtproj), the following exception occurs:
SlnParser.Contracts.Exceptions.ParseSolutionFailedException: Could not parse provided Solution 'C:\Test\Test.sln'. See inner exception for more information
---> SlnParser.Contracts.Exceptions.UnexpectedSolutionStructureException: Expected to find ConfigurationPlatform but pattern did not match
*.dtproj files don't have the same XML schema as *.csproj or *.vcxproj, files for example, and only contain a project configuration name without a platform.
Okay thank you. I'll have a look at this in the coming days, probably not tomorrow though.
Feel free to open up a PR if you want to fix this yourself.
wgnf
changed the title
[FEAT]: Support parsing solution configuration mappings for projects which don't have a platform
[BUG]: Support parsing solution configuration mappings for projects which don't have a platform
Aug 23, 2023
…ch don't have a platform (#25)
* Support parsing solution configuration mappings for projects which don't have a platform
Fixes#24
* Fixed coding style
Moved sln file contents to external file
Description of the feature/enhancement
Hi.
When trying to parse a solution file which contains an SQL Server Integration Services (SSIS) Project (i.e.
*.dtproj
), the following exception occurs:*.dtproj
files don't have the same XML schema as*.csproj
or*.vcxproj
, files for example, and only contain a project configuration name without a platform.Here's an example sln file which contains a
*.dtproj
:https://github.com/Badrinarayanan-ah/Adhere-Health/blob/ab151354ce44ce87f2d87564b8acd34f526f62e0/DeathAndDisenrollment/DND.sln#L1-L21
The regular expression pattern
SlnParser/src/SlnParser/Helper/SolutionConfigurationPlatformParser.cs
Line 55 in ecb1f51
|
after= Development
.Thank you.
Additional Information
No response
The text was updated successfully, but these errors were encountered: