Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/FubuMvcArchive/bottles
OBSOLETE - Modular runtime packaging for .Net applications
https://github.com/FubuMvcArchive/bottles
Last synced: 2 days ago
JSON representation
OBSOLETE - Modular runtime packaging for .Net applications
- Host: GitHub
- URL: https://github.com/FubuMvcArchive/bottles
- Owner: FubuMvcArchive
- License: other
- Created: 2011-04-12T19:50:48.000Z (over 13 years ago)
- Default Branch: master
- Last Pushed: 2015-03-30T15:26:01.000Z (over 9 years ago)
- Last Synced: 2024-11-08T10:52:21.422Z (6 days ago)
- Language: C#
- Homepage: http://fubuworld.com/bottles
- Size: 40.8 MB
- Stars: 26
- Watchers: 6
- Forks: 16
- Open Issues: 5
-
Metadata Files:
- Readme: readme.markdown
- License: license.txt
Awesome Lists containing this project
README
Why does `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.1. Delete your local clone of the Bottles repository
1. Type: `git config --global core.autocrlf false`
1. Type: `git config --system core.autocrlf false`
1. Clone the Bottles repository again[More information about working with git and Bottles](http://groups.google.com/group/fubumvc-devel/browse_thread/thread/606000f0803adf31/a09fce24e468ea20?#a09fce24e468ea20)
Where is CommonAssemblyInfo.cs?
--CommonAssemblyInfo.cs is generated by the build. The build script requires Ruby with rake installed.
1. Run `InstallGems.bat` to get the ruby dependencies (only needs to be run once per computer)
1. open a command prompt to the root folder and type `rake` to execute rakefile.rbIf you do not have ruby:
1. You need to manually create a src\CommonAssemblyInfo.cs file
* type: `echo // > src\CommonAssemblyInfo.cs`
1. open src\Bottles.sln with Visual Studio and Build the solution