DarthFubuMVC / fubumvc
- Source
- Commits
- Network (66)
- Issues (6)
- Downloads (2)
- Wiki (2)
- Graphs
-
Branch:
master
fubumvc /
| name | age | message | |
|---|---|---|---|
| |
.gitignore | Sat Aug 21 18:08:32 -0700 2010 | |
| |
InstallGems.bat | Wed Feb 03 12:53:37 -0800 2010 | |
| |
build_support/ | Mon Aug 23 07:31:54 -0700 2010 | |
| |
changelog.txt | Sat Jan 23 08:11:49 -0800 2010 | |
| |
doc/ | Tue Jan 12 10:12:55 -0800 2010 | |
| |
lib/ | Mon Jul 19 13:00:32 -0700 2010 | |
| |
license.txt | Tue Jan 12 10:12:55 -0800 2010 | |
| |
rakefile.rb | Sat Aug 21 18:36:23 -0700 2010 | |
| |
readme.markdown | Fri Feb 05 08:01:53 -0800 2010 | |
| |
src/ | Thu Sep 02 18:39:16 -0700 2010 |
readme.markdownWhy does
Why does git status show that all of my files are modified?
FubuMVC 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 FubuMVC.
- Delete your local clone of the FubuMVC repository
- Type:
git config --global core.autocrlf false - Type:
git config --system core.autocrlf false - Clone the FubuMVC repository again
More information about working with git and FubuMVC
Where is CommonAssemblyInfo.cs?
CommonAssemblyInfo.cs is generated by the build. The build script requires Ruby with rake installed.
- Run
InstallGems.batto get the ruby dependencies (only needs to be run once per computer) - open a command prompt to the root folder and type
raketo execute rakefile.rb
If you do not have ruby:
You need to manually create a src\CommonAssemblyInfo.cs file
type:
echo // > src\CommonAssemblyInfo.cs- open src\FubuMVC.sln with Visual Studio and Build the solution