Skip to content

Latest commit

 

History

History
25 lines (17 loc) · 1.54 KB

creating-an-dot-sbr-file.md

File metadata and controls

25 lines (17 loc) · 1.54 KB
description title ms.date helpviewer_keywords ms.assetid
Learn more about: Creating an .Sbr File
Creating an .Sbr File
11/04/2016
SBR files
BSCMAKE, input files
.sbr files
source browser files
local symbols in browse information
symbols
bdb4b93c-a88a-441a-84fd-01087d03be25

Creating an .Sbr File

Warning

Although BSCMAKE is still installed with Visual Studio, it is no longer used by the IDE. Since Visual Studio 2008, browse and symbol information is stored automatically in a SQL Server .sdf file in the solution folder.

The input files for BSCMAKE are .sbr files. The compiler creates an .sbr file for each object file (.obj) it compiles. When you build or update your browse information file, all .sbr files for your project must be available on disk.

To create an .sbr file with all possible information, specify /FR.

To create an .sbr file that doesn't contain local symbols, specify /Fr. If the .sbr files contain local symbols, you can still omit them from the .bsc file by using BSCMAKE's /El option.

You can create an .sbr file without performing a full compile. For example, you can specify the /Zs option to the compiler to perform a syntax check and still generate an .sbr file if you specify /FR or /Fr.

The build process can be more efficient if the .sbr files are first packed to remove unreferenced definitions. The compiler automatically packs .sbr files.

See also

Building a .Bsc File