git status
show that all of my files are modified?Bottles is built by Windows users, so all of the text files have CRLF line endings. These line endings are stored as-is in git (which means we all have autocrlf turned off). If you have autocrlf enabled, when you retrieve files from git, it will modify all of your files. Your best bet is to turn off autocrlf, and re-create your clone of Bottles.
git config --global core.autocrlf false
git config --system core.autocrlf false
More information about working with git and Bottles
CommonAssemblyInfo.cs is generated by the build. The build script requires Ruby with rake installed.
InstallGems.bat
to get the ruby dependencies (only needs to be run once per computer)rake
to execute rakefile.rbIf you do not have ruby:
You need to manually create a src\CommonAssemblyInfo.cs file
echo // > src\CommonAssemblyInfo.cs