This will change many files, and likely not build
Here is the script used to do the replacement:
```
NEWNAME="Scalar"
LOWERNAME="scalar"
for file in $(find . -type f -name '*')
do
if [[ $file == *.png ]]
then
continue
fi
if [[ $file == *.ico ]]
then
continue
fi
if [[ $file == *cddl1.txt ]]
then
continue
fi
if [[ $file == *.rc ]]
then
continue
fi
if [[ $file == *index_v4 ]]
then
continue
fi
if [[ $file == ./.git/* ]]
then
continue
fi
sed -i .bak "s/GVFS/$NEWNAME/g" "$file"
sed -i .bak "s/VFS For Git/$NEWNAME/g" "$file"
sed -i .bak "s/VFS for Git/$NEWNAME/g" "$file"
sed -i .bak "s/VFSForGit/$NEWNAME/g" "$file"
sed -i .bak "s/vfsforgit/$LOWERNAME/g" "$file"
sed -i .bak "s/VFS/$NEWNAME/g" "$file"
sed -i .bak "s/gvfs/$LOWERNAME/g" "$file"
done
git commit -a -s -m "[REPLACE] Replace old name in all files" -m "This will change many files, and likely not build"
git clean -xdf
```
Signed-off-by: Derrick Stolee <dstolee@microsoft.com>
Declare the following VS components as required for this solution to
build:
- Microsoft.Component.MSBuild
- Microsoft.VisualStudio.Workload.NativeDesktop
- Microsoft.VisualStudio.Workload.ManagedDesktop
- Microsoft.VisualStudio.Workload.NetCoreTools
- Microsoft.Net.Core.Component.SDK.2.1
- Microsoft.VisualStudio.Component.VC.v141.x86.x64
- Microsoft.Net.Component.4.6.1.TargetingPack
- Microsoft.Net.Component.4.6.1.SDK
Note that the Windows 10 SDK 10240 is also required, but this component
is no longer shipped with VS2019.