a fork of iceshrimp.net but a tweaked frontend to my personal liking. waow
fediverse social-media social iceshrimp fedi
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

[build] Add guard MSBuild target to prevent accidental builds of the entire solution

+7
+6
Directory.Build.targets
··· 1 + <?xml version="1.0" encoding="utf-8" ?> 2 + <Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> 3 + <Target Name="EnsureBuildDirValidity" BeforeTargets="BeforeBuild"> 4 + <Error Text="You are trying to build/publish the entire solution. Please build the Iceshrimp.Backend project directly instead." Condition="'$(SolutionDir)'!='' and '$(SolutionDir)'!='*Undefined*'"/> 5 + </Target> 6 + </Project>
+1
Iceshrimp.NET.slnx
··· 1 1 <Solution> 2 2 <Folder Name="/build/"> 3 3 <File Path="Directory.Build.props" /> 4 + <File Path="Directory.Build.targets" /> 4 5 <File Path="global.json" /> 5 6 <File Path="Iceshrimp.Build/Iceshrimp.Build.props" /> 6 7 <File Path="Iceshrimp.Build/Iceshrimp.Build.targets" />