From 91f0bfbe739d85166ef06d528a7da9b710277923 Mon Sep 17 00:00:00 2001 From: Tanner Gooding Date: Tue, 14 Jun 2016 18:02:00 -0700 Subject: [PATCH] Updating Settings.targets to ignore BC42366 and CS7035. --- build/Targets/Settings.targets | 17 +++++++++++++++-- 1 file changed, 15 insertions(+), 2 deletions(-) diff --git a/build/Targets/Settings.targets b/build/Targets/Settings.targets index cd28529166a..2430b4b8857 100644 --- a/build/Targets/Settings.targets +++ b/build/Targets/Settings.targets @@ -243,6 +243,15 @@ On Embed + + + $(NoWarn);42366 @@ -276,9 +285,13 @@ the methods are public. We don't want to duplicate documentation for them and hence suppress this warning until we get closer to release and a more thorough documentation story - + 7035: GeneratedAssemblyInfo_.cs will report this warning if any of the four parts + of the version string (major.minor.build.revision) are above 65535. This breaks for + various build formats involving the current year/month/day. For example it works for + 60614 (June 14th, 2016), but breaks for 70614 (June 14th, 2017) and it also breaks + for something like 20160614 (also June 14th, 2016). --> - 1591 + $(NoWarn);1591;7035 true -- GitLab