diff options
author | Jan Tattermusch <jtattermusch@google.com> | 2018-09-28 09:56:47 +0200 |
---|---|---|
committer | Jan Tattermusch <jtattermusch@google.com> | 2018-09-28 09:56:47 +0200 |
commit | e70d0d3ed41ee4fc3165c11de9237d64c8cacba1 (patch) | |
tree | 18d12f84ce14c2c5db2ce7a49982fd63d4227a52 /templates | |
parent | cd41e6936ef9c2e8a36f51be9c5d899d452c49a5 (diff) |
remove no-longer-useful properties from build.yaml
Diffstat (limited to 'templates')
-rw-r--r-- | templates/README.md | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/templates/README.md b/templates/README.md index c837b5b260..bf6aab80df 100644 --- a/templates/README.md +++ b/templates/README.md @@ -87,7 +87,6 @@ src: # list of files to compile secure: boolean, # see below baselib: boolean, # this is a low level library that has system # dependencies -vs_project_guid: '{...}', # Visual Studio's unique guid for that project filegroups: # list of filegroups to merge to that project # note that this will be expanded automatically deps: # list of libraries this target depends on @@ -95,12 +94,6 @@ deps_linkage: "..." # "static" or "dynamic". Used by the Makefile only to # determine the way dependencies are linkned. Defaults # to "dynamic". dll: "..." # see below. -dll_def: "..." # Visual Studio's dll definition file. -vs_props: # List of property sheets to attach to that project. -vs_config_type: "..." # DynamicLibrary/StaticLibrary. Used only when - # creating a library. Specifies if we're building a - # static library or a dll. Use in conjunction with `dll_def`. -vs_packages: # List of nuget packages this project depends on. ``` ## The `"build"` tag @@ -141,11 +134,6 @@ Used only by Visual Studio's project files. "true" means the project will be built with both static and dynamic runtimes. "false" means it'll only be built with static runtime. "only" means it'll only be built with the dll runtime. -## The `"dll_def"` tag - -Specifies the visual studio's dll definition file. When creating a DLL, you -sometimes (not always) need a def file (see grpc.def). - # The template system |