Sebastiaan
04/18/2024, 12:54 PMSebastiaan
04/18/2024, 12:55 PMcsproj
a bit more, and it's no longer including that Client
folder now - I don't know for sure if that did the trick but when I installed it in a new, clean 14RC1.. it works!! Marker and all (and it saves, etc.).Warren Buckley
04/18/2024, 2:23 PMSebastiaan
04/19/2024, 7:51 AM<None Include
as well otherwise I can't see some files in my IDE in the Client
folder.
https://cdn.discordapp.com/attachments/1230501800940015717/1230787828049383444/image.png?ex=6634977d&is=6622227d&hm=ca75bde9313eb00bc049cba9d4055dcc3742a687d27e5f82d678c61a137c1213&Sebastiaan
04/19/2024, 7:52 AMSebastiaan
04/19/2024, 7:53 AMxml
<ItemGroup>
<Content Remove="Client\**" />
<Content Include="Client\assets\*.json" Pack="false" />
<Content Include="Client\assets\public\umbraco-package.json" Pack="false" />
</ItemGroup>
Had to change it to this as I wanted to see those files in my IDE:
https://cdn.discordapp.com/attachments/1230501800940015717/1230788249379930154/image.png?ex=663497e1&is=662222e1&hm=86491776683af477abe9a3f852510b5f7fe957308fca2b7ebe681e5731b996ff&Warren Buckley
04/19/2024, 7:53 AMSebastiaan
04/19/2024, 7:53 AMSebastiaan
04/19/2024, 7:54 AMPack="false"
- exactly what I needed πWarren Buckley
04/19/2024, 7:54 AMWarren Buckley
04/19/2024, 7:55 AMSebastiaan
04/19/2024, 7:57 AMClient
folder, you see the package.json disappeards and tsconfig.json, so this makes them available again in VS/Rider
xml
<Content Include="Client\assets\*.json" Pack="false" />
<Content Include="Client\assets\public\umbraco-package.json" Pack="false" />
Sebastiaan
04/19/2024, 7:57 AMWarren Buckley
04/19/2024, 7:58 AMWarren Buckley
04/19/2024, 7:58 AMSebastiaan
04/19/2024, 8:00 AMExaminePeek.targets
file for though? Just the ExaminePeek.dll.xml
file to be included?Sebastiaan
04/19/2024, 8:34 AMWarren Buckley
04/19/2024, 9:59 AM