Acked-by: Anand Kumar <kumaran...@vmware.com>

Thanks,
Anand Kumar

On 5/23/17, 10:59 AM, "ovs-dev-boun...@openvswitch.org on behalf of Alin 
Serdean" <ovs-dev-boun...@openvswitch.org on behalf of 
aserd...@cloudbasesolutions.com> wrote:

    Add two new build targets: 'Win8Analyze' and 'Win8.1Analyze'.
    The new build targets have the static code analyzer (built in Visual
    Studio feature).
    
    This patch also introduces a new make target ('datapath_windows_analyze')
    this can be added to the CI jobs to get a list warnings/errors issued
    by the code analyzer.
    
    Signed-off-by: Alin Gabriel Serdean <aserd...@cloudbasesolutions.com>
    ---
     datapath-windows/Package/package.VcxProj      | 28 ++++++++++++
     datapath-windows/Package/package.VcxProj.user |  6 +++
     datapath-windows/automake.mk                  |  4 ++
     datapath-windows/ovsext.sln                   | 14 ++++++
     datapath-windows/ovsext/ovsext.vcxproj        | 62 
+++++++++++++++++++++++++++
     datapath-windows/ovsext/ovsext.vcxproj.user   |  6 +++
     6 files changed, 120 insertions(+)
    
    diff --git a/datapath-windows/Package/package.VcxProj 
b/datapath-windows/Package/package.VcxProj
    index 24bb914..4d6db59 100644
    --- a/datapath-windows/Package/package.VcxProj
    +++ b/datapath-windows/Package/package.VcxProj
    @@ -25,6 +25,14 @@
           <Configuration>Win8 Release</Configuration>
           <Platform>x64</Platform>
         </ProjectConfiguration>
    +    <ProjectConfiguration Include="Win8.1Analyze|x64">
    +      <Configuration>Win8.1Analyze</Configuration>
    +      <Platform>x64</Platform>
    +    </ProjectConfiguration>
    +    <ProjectConfiguration Include="Win8Analyze|x64">
    +      <Configuration>Win8Analyze</Configuration>
    +      <Platform>x64</Platform>
    +    </ProjectConfiguration>
       </ItemGroup>
       <PropertyGroup Label="PropertySheets">
         <ConfigurationType>Utility</ConfigurationType>
    @@ -46,6 +54,11 @@
         <UseDebugLibraries>true</UseDebugLibraries>
         <PlatformToolset>WindowsKernelModeDriver8.1</PlatformToolset>
       </PropertyGroup>
    +  <PropertyGroup 
Condition="'$(Configuration)|$(Platform)'=='Win8.1Analyze|x64'" 
Label="Configuration">
    +    <TargetVersion>WindowsV6.3</TargetVersion>
    +    <UseDebugLibraries>true</UseDebugLibraries>
    +    <PlatformToolset>WindowsKernelModeDriver8.1</PlatformToolset>
    +  </PropertyGroup>
       <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Win10 
Debug|x64'" Label="Configuration">
         <TargetVersion>
         </TargetVersion>
    @@ -58,6 +71,11 @@
         <UseDebugLibraries>true</UseDebugLibraries>
         <PlatformToolset>WindowsKernelModeDriver8.1</PlatformToolset>
       </PropertyGroup>
    +  <PropertyGroup 
Condition="'$(Configuration)|$(Platform)'=='Win8Analyze|x64'" 
Label="Configuration">
    +    <TargetVersion>Windows8</TargetVersion>
    +    <UseDebugLibraries>true</UseDebugLibraries>
    +    <PlatformToolset>WindowsKernelModeDriver8.1</PlatformToolset>
    +  </PropertyGroup>
       <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Win10 
Release|x64'" Label="Configuration">
         <TargetVersion>
         </TargetVersion>
    @@ -105,6 +123,11 @@
           <UseLocalTime>true</UseLocalTime>
         </Inf2Cat>
       </ItemDefinitionGroup>
    +  <ItemDefinitionGroup 
Condition="'$(Configuration)|$(Platform)'=='Win8Analyze|x64'">
    +    <Inf2Cat>
    +      <UseLocalTime>true</UseLocalTime>
    +    </Inf2Cat>
    +  </ItemDefinitionGroup>
       <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Win10 
Debug|x64'">
         <Inf2Cat>
           <UseLocalTime>true</UseLocalTime>
    @@ -115,6 +138,11 @@
           <UseLocalTime>true</UseLocalTime>
         </Inf2Cat>
       </ItemDefinitionGroup>
    +  <ItemDefinitionGroup 
Condition="'$(Configuration)|$(Platform)'=='Win8.1Analyze|x64'">
    +    <Inf2Cat>
    +      <UseLocalTime>true</UseLocalTime>
    +    </Inf2Cat>
    +  </ItemDefinitionGroup>
       <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Win8 
Release|x64'">
         <Inf2Cat>
           <UseLocalTime>true</UseLocalTime>
    diff --git a/datapath-windows/Package/package.VcxProj.user 
b/datapath-windows/Package/package.VcxProj.user
    index 75ea9d7..6231d93 100644
    --- a/datapath-windows/Package/package.VcxProj.user
    +++ b/datapath-windows/Package/package.VcxProj.user
    @@ -3,9 +3,15 @@
       <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Win8 
Debug|x64'">
         <SignMode>TestSign</SignMode>
       </PropertyGroup>
    +  <PropertyGroup 
Condition="'$(Configuration)|$(Platform)'=='Win8Analyze|x64'">
    +    <SignMode>TestSign</SignMode>
    +  </PropertyGroup>
       <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Win8.1 
Debug|x64'">
         <SignMode>TestSign</SignMode>
       </PropertyGroup>
    +  <PropertyGroup 
Condition="'$(Configuration)|$(Platform)'=='Win8.1Analyze|x64'">
    +    <SignMode>TestSign</SignMode>
    +  </PropertyGroup>
       <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Win10 
Debug|x64'">
         <SignMode>TestSign</SignMode>
       </PropertyGroup>
    diff --git a/datapath-windows/automake.mk b/datapath-windows/automake.mk
    index 4f7b55a..49011f1 100644
    --- a/datapath-windows/automake.mk
    +++ b/datapath-windows/automake.mk
    @@ -82,3 +82,7 @@ EXTRA_DIST += \
        datapath-windows/ovsext/precomp.h \
        datapath-windows/ovsext/precompsrc.c \
        datapath-windows/ovsext/resource.h
    +
    +datapath_windows_analyze: all
    +   MSBuild.exe //maxcpucount datapath-windows/ovsext.sln /target:Build 
/property:Configuration="Win8.1Analyze"
    +   MSBuild.exe //maxcpucount datapath-windows/ovsext.sln /target:Build 
/property:Configuration="Win8Analyze"
    diff --git a/datapath-windows/ovsext.sln b/datapath-windows/ovsext.sln
    index 6cf441b..1000104 100644
    --- a/datapath-windows/ovsext.sln
    +++ b/datapath-windows/ovsext.sln
    @@ -14,8 +14,10 @@ Global
        GlobalSection(SolutionConfigurationPlatforms) = preSolution
                Win10Debug|x64 = Win10Debug|x64
                Win10Release|x64 = Win10Release|x64
    +           Win8.1Analyze|x64 = Win8.1Analyze|x64
                Win8.1Debug|x64 = Win8.1Debug|x64
                Win8.1Release|x64 = Win8.1Release|x64
    +           Win8Analyze|x64 = Win8Analyze|x64
                Win8Debug|x64 = Win8Debug|x64
                Win8Release|x64 = Win8Release|x64
        EndGlobalSection
    @@ -26,10 +28,16 @@ Global
                
{911D7389-3E61-449F-B8F3-14AD7EE9A0F2}.Win10Release|x64.ActiveCfg = Win10 
Release|x64
                {911D7389-3E61-449F-B8F3-14AD7EE9A0F2}.Win10Release|x64.Build.0 
= Win10 Release|x64
                
{911D7389-3E61-449F-B8F3-14AD7EE9A0F2}.Win10Release|x64.Deploy.0 = Win10 
Release|x64
    +           
{911D7389-3E61-449F-B8F3-14AD7EE9A0F2}.Win8.1Analyze|x64.ActiveCfg = 
Win8.1Analyze|x64
    +           
{911D7389-3E61-449F-B8F3-14AD7EE9A0F2}.Win8.1Analyze|x64.Build.0 = 
Win8.1Analyze|x64
    +           
{911D7389-3E61-449F-B8F3-14AD7EE9A0F2}.Win8.1Analyze|x64.Deploy.0 = 
Win8.1Analyze|x64
                
{911D7389-3E61-449F-B8F3-14AD7EE9A0F2}.Win8.1Debug|x64.ActiveCfg = Win8.1 
Debug|x64
                {911D7389-3E61-449F-B8F3-14AD7EE9A0F2}.Win8.1Debug|x64.Build.0 
= Win8.1 Debug|x64
                
{911D7389-3E61-449F-B8F3-14AD7EE9A0F2}.Win8.1Release|x64.ActiveCfg = Win8.1 
Release|x64
                
{911D7389-3E61-449F-B8F3-14AD7EE9A0F2}.Win8.1Release|x64.Build.0 = Win8.1 
Release|x64
    +           
{911D7389-3E61-449F-B8F3-14AD7EE9A0F2}.Win8Analyze|x64.ActiveCfg = 
Win8Analyze|x64
    +           {911D7389-3E61-449F-B8F3-14AD7EE9A0F2}.Win8Analyze|x64.Build.0 
= Win8Analyze|x64
    +           {911D7389-3E61-449F-B8F3-14AD7EE9A0F2}.Win8Analyze|x64.Deploy.0 
= Win8Analyze|x64
                {911D7389-3E61-449F-B8F3-14AD7EE9A0F2}.Win8Debug|x64.ActiveCfg 
= Win8 Debug|x64
                {911D7389-3E61-449F-B8F3-14AD7EE9A0F2}.Win8Debug|x64.Build.0 = 
Win8 Debug|x64
                
{911D7389-3E61-449F-B8F3-14AD7EE9A0F2}.Win8Release|x64.ActiveCfg = Win8 
Release|x64
    @@ -40,12 +48,18 @@ Global
                
{63FE215D-98BE-4440-8081-C6160EFB80FA}.Win10Release|x64.ActiveCfg = Win10 
Release|x64
                {63FE215D-98BE-4440-8081-C6160EFB80FA}.Win10Release|x64.Build.0 
= Win10 Release|x64
                
{63FE215D-98BE-4440-8081-C6160EFB80FA}.Win10Release|x64.Deploy.0 = Win10 
Release|x64
    +           
{63FE215D-98BE-4440-8081-C6160EFB80FA}.Win8.1Analyze|x64.ActiveCfg = 
Win8.1Analyze|x64
    +           
{63FE215D-98BE-4440-8081-C6160EFB80FA}.Win8.1Analyze|x64.Build.0 = 
Win8.1Analyze|x64
    +           
{63FE215D-98BE-4440-8081-C6160EFB80FA}.Win8.1Analyze|x64.Deploy.0 = 
Win8.1Analyze|x64
                
{63FE215D-98BE-4440-8081-C6160EFB80FA}.Win8.1Debug|x64.ActiveCfg = Win8.1 
Debug|x64
                {63FE215D-98BE-4440-8081-C6160EFB80FA}.Win8.1Debug|x64.Build.0 
= Win8.1 Debug|x64
                {63FE215D-98BE-4440-8081-C6160EFB80FA}.Win8.1Debug|x64.Deploy.0 
= Win8.1 Debug|x64
                
{63FE215D-98BE-4440-8081-C6160EFB80FA}.Win8.1Release|x64.ActiveCfg = Win8.1 
Release|x64
                
{63FE215D-98BE-4440-8081-C6160EFB80FA}.Win8.1Release|x64.Build.0 = Win8.1 
Release|x64
                
{63FE215D-98BE-4440-8081-C6160EFB80FA}.Win8.1Release|x64.Deploy.0 = Win8.1 
Release|x64
    +           
{63FE215D-98BE-4440-8081-C6160EFB80FA}.Win8Analyze|x64.ActiveCfg = 
Win8Analyze|x64
    +           {63FE215D-98BE-4440-8081-C6160EFB80FA}.Win8Analyze|x64.Build.0 
= Win8Analyze|x64
    +           {63FE215D-98BE-4440-8081-C6160EFB80FA}.Win8Analyze|x64.Deploy.0 
= Win8Analyze|x64
                {63FE215D-98BE-4440-8081-C6160EFB80FA}.Win8Debug|x64.ActiveCfg 
= Win8 Debug|x64
                {63FE215D-98BE-4440-8081-C6160EFB80FA}.Win8Debug|x64.Build.0 = 
Win8 Debug|x64
                {63FE215D-98BE-4440-8081-C6160EFB80FA}.Win8Debug|x64.Deploy.0 = 
Win8 Debug|x64
    diff --git a/datapath-windows/ovsext/ovsext.vcxproj 
b/datapath-windows/ovsext/ovsext.vcxproj
    index cccf066..15a045e 100644
    --- a/datapath-windows/ovsext/ovsext.vcxproj
    +++ b/datapath-windows/ovsext/ovsext.vcxproj
    @@ -25,6 +25,14 @@
           <Configuration>Win8 Release</Configuration>
           <Platform>x64</Platform>
         </ProjectConfiguration>
    +    <ProjectConfiguration Include="Win8.1Analyze|x64">
    +      <Configuration>Win8.1Analyze</Configuration>
    +      <Platform>x64</Platform>
    +    </ProjectConfiguration>
    +    <ProjectConfiguration Include="Win8Analyze|x64">
    +      <Configuration>Win8Analyze</Configuration>
    +      <Platform>x64</Platform>
    +    </ProjectConfiguration>
       </ItemGroup>
       <PropertyGroup Label="PropertySheets">
         <DriverType>WDM</DriverType>
    @@ -46,6 +54,11 @@
         <UseDebugLibraries>True</UseDebugLibraries>
         <PlatformToolset>WindowsKernelModeDriver8.1</PlatformToolset>
       </PropertyGroup>
    +  <PropertyGroup 
Condition="'$(Configuration)|$(Platform)'=='Win8.1Analyze|x64'" 
Label="Configuration">
    +    <TargetVersion>WindowsV6.3</TargetVersion>
    +    <UseDebugLibraries>True</UseDebugLibraries>
    +    <PlatformToolset>WindowsKernelModeDriver8.1</PlatformToolset>
    +  </PropertyGroup>
       <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Win10 
Debug|x64'" Label="Configuration">
         <TargetVersion>
         </TargetVersion>
    @@ -58,6 +71,11 @@
         <UseDebugLibraries>True</UseDebugLibraries>
         <PlatformToolset>WindowsKernelModeDriver8.1</PlatformToolset>
       </PropertyGroup>
    +  <PropertyGroup 
Condition="'$(Configuration)|$(Platform)'=='Win8Analyze|x64'" 
Label="Configuration">
    +    <TargetVersion>Win8</TargetVersion>
    +    <UseDebugLibraries>True</UseDebugLibraries>
    +    <PlatformToolset>WindowsKernelModeDriver8.1</PlatformToolset>
    +  </PropertyGroup>
       <PropertyGroup Label="Configuration" 
Condition="'$(Configuration)|$(Platform)'=='Win8.1 Release|x64'">
         <TargetVersion>WindowsV6.3</TargetVersion>
         <UseDebugLibraries>False</UseDebugLibraries>
    @@ -91,9 +109,15 @@
       <ImportGroup Label="PropertySheets" 
Condition="'$(Configuration)|$(Platform)'=='Win8 Debug|x64'">
         <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" 
Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" />
       </ImportGroup>
    +  <ImportGroup 
Condition="'$(Configuration)|$(Platform)'=='Win8Analyze|x64'" 
Label="PropertySheets">
    +    <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" 
Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" />
    +  </ImportGroup>
       <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Win8.1 
Debug|x64'" Label="PropertySheets">
         <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" 
Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" />
       </ImportGroup>
    +  <ImportGroup 
Condition="'$(Configuration)|$(Platform)'=='Win8.1Analyze|x64'" 
Label="PropertySheets">
    +    <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" 
Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" />
    +  </ImportGroup>
       <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Win10 
Debug|x64'" Label="PropertySheets">
         <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" 
Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" />
       </ImportGroup>
    @@ -147,6 +171,12 @@
       <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Win10 
Debug|x64'">
         <Inf2CatUseLocalTime>true</Inf2CatUseLocalTime>
       </PropertyGroup>
    +  <PropertyGroup 
Condition="'$(Configuration)|$(Platform)'=='Win8.1Analyze|x64'">
    +    <RunCodeAnalysis>true</RunCodeAnalysis>
    +  </PropertyGroup>
    +  <PropertyGroup 
Condition="'$(Configuration)|$(Platform)'=='Win8Analyze|x64'">
    +    <RunCodeAnalysis>true</RunCodeAnalysis>
    +  </PropertyGroup>
       <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Win8 
Release|x64'">
         <ClCompile>
           
<PreprocessorDefinitions>%(PreprocessorDefinitions);NDIS_WDM=1;NDIS630=1</PreprocessorDefinitions>
    @@ -191,6 +221,17 @@
           
<PreprocessorDefinitions>%(PreprocessorDefinitions);NDIS_WDM=1;NDIS630=1</PreprocessorDefinitions>
         </ResourceCompile>
       </ItemDefinitionGroup>
    +  <ItemDefinitionGroup 
Condition="'$(Configuration)|$(Platform)'=='Win8Analyze|x64'">
    +    <ClCompile>
    +      
<PreprocessorDefinitions>%(PreprocessorDefinitions);NDIS_WDM=1;NDIS630=1</PreprocessorDefinitions>
    +    </ClCompile>
    +    <Midl>
    +      
<PreprocessorDefinitions>%(PreprocessorDefinitions);NDIS_WDM=1;NDIS630=1</PreprocessorDefinitions>
    +    </Midl>
    +    <ResourceCompile>
    +      
<PreprocessorDefinitions>%(PreprocessorDefinitions);NDIS_WDM=1;NDIS630=1</PreprocessorDefinitions>
    +    </ResourceCompile>
    +  </ItemDefinitionGroup>
       <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Win8.1 
Debug|x64'">
         <ClCompile>
           
<PreprocessorDefinitions>%(PreprocessorDefinitions);NDIS_WDM=1;NDIS640=1</PreprocessorDefinitions>
    @@ -202,6 +243,17 @@
           
<PreprocessorDefinitions>%(PreprocessorDefinitions);NDIS_WDM=1;NDIS640=1</PreprocessorDefinitions>
         </ResourceCompile>
       </ItemDefinitionGroup>
    +  <ItemDefinitionGroup 
Condition="'$(Configuration)|$(Platform)'=='Win8.1Analyze|x64'">
    +    <ClCompile>
    +      
<PreprocessorDefinitions>%(PreprocessorDefinitions);NDIS_WDM=1;NDIS640=1</PreprocessorDefinitions>
    +    </ClCompile>
    +    <Midl>
    +      
<PreprocessorDefinitions>%(PreprocessorDefinitions);NDIS_WDM=1;NDIS640=1</PreprocessorDefinitions>
    +    </Midl>
    +    <ResourceCompile>
    +      
<PreprocessorDefinitions>%(PreprocessorDefinitions);NDIS_WDM=1;NDIS640=1</PreprocessorDefinitions>
    +    </ResourceCompile>
    +  </ItemDefinitionGroup>
       <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Win10 
Debug|x64'">
         <ClCompile>
           
<PreprocessorDefinitions>%(PreprocessorDefinitions);NDIS_WDM=1;NDIS640=1</PreprocessorDefinitions>
    @@ -223,23 +275,31 @@
           <ExceptionHandling>
           </ExceptionHandling>
           <AdditionalIncludeDirectories 
Condition="'$(Configuration)|$(Platform)'=='Win8 
Debug|x64'">$(IntDir);%(AdditionalIncludeDirectories);..\..</AdditionalIncludeDirectories>
    +      <AdditionalIncludeDirectories 
Condition="'$(Configuration)|$(Platform)'=='Win8Analyze|x64'">$(IntDir);%(AdditionalIncludeDirectories);..\..</AdditionalIncludeDirectories>
           <AdditionalIncludeDirectories 
Condition="'$(Configuration)|$(Platform)'=='Win8.1 
Debug|x64'">$(IntDir);%(AdditionalIncludeDirectories);..\..</AdditionalIncludeDirectories>
    +      <AdditionalIncludeDirectories 
Condition="'$(Configuration)|$(Platform)'=='Win8.1Analyze|x64'">$(IntDir);%(AdditionalIncludeDirectories);..\..</AdditionalIncludeDirectories>
           <AdditionalIncludeDirectories 
Condition="'$(Configuration)|$(Platform)'=='Win10 
Debug|x64'">$(IntDir);%(AdditionalIncludeDirectories);..\..</AdditionalIncludeDirectories>
           <AdditionalIncludeDirectories 
Condition="'$(Configuration)|$(Platform)'=='Win8 
Release|x64'">$(IntDir);%(AdditionalIncludeDirectories);..\..</AdditionalIncludeDirectories>
           <AdditionalIncludeDirectories 
Condition="'$(Configuration)|$(Platform)'=='Win8.1 
Release|x64'">$(IntDir);%(AdditionalIncludeDirectories);..\..</AdditionalIncludeDirectories>
           <AdditionalIncludeDirectories 
Condition="'$(Configuration)|$(Platform)'=='Win10 
Release|x64'">$(IntDir);%(AdditionalIncludeDirectories);..\..</AdditionalIncludeDirectories>
           <MultiProcessorCompilation 
Condition="'$(Configuration)|$(Platform)'=='Win8 
Release|x64'">true</MultiProcessorCompilation>
           <MultiProcessorCompilation 
Condition="'$(Configuration)|$(Platform)'=='Win8 
Debug|x64'">true</MultiProcessorCompilation>
    +      <MultiProcessorCompilation 
Condition="'$(Configuration)|$(Platform)'=='Win8Analyze|x64'">true</MultiProcessorCompilation>
           <MultiProcessorCompilation 
Condition="'$(Configuration)|$(Platform)'=='Win8.1 
Debug|x64'">true</MultiProcessorCompilation>
    +      <MultiProcessorCompilation 
Condition="'$(Configuration)|$(Platform)'=='Win8.1Analyze|x64'">true</MultiProcessorCompilation>
           <MultiProcessorCompilation 
Condition="'$(Configuration)|$(Platform)'=='Win10 
Debug|x64'">true</MultiProcessorCompilation>
           <MultiProcessorCompilation 
Condition="'$(Configuration)|$(Platform)'=='Win8.1 
Release|x64'">true</MultiProcessorCompilation>
           <MultiProcessorCompilation 
Condition="'$(Configuration)|$(Platform)'=='Win10 
Release|x64'">true</MultiProcessorCompilation>
    +      <EnablePREfast 
Condition="'$(Configuration)|$(Platform)'=='Win8.1Analyze|x64'">true</EnablePREfast>
    +      <EnablePREfast 
Condition="'$(Configuration)|$(Platform)'=='Win8Analyze|x64'">true</EnablePREfast>
         </ClCompile>
         <Inf>
           <TimeStamp Condition="'$(Configuration)|$(Platform)'=='Win8 
Debug|x64'">$(Version)</TimeStamp>
    +      <TimeStamp 
Condition="'$(Configuration)|$(Platform)'=='Win8Analyze|x64'">$(Version)</TimeStamp>
         </Inf>
         <Inf>
           <TimeStamp Condition="'$(Configuration)|$(Platform)'=='Win8.1 
Debug|x64'">$(Version)</TimeStamp>
    +      <TimeStamp 
Condition="'$(Configuration)|$(Platform)'=='Win8.1Analyze|x64'">$(Version)</TimeStamp>
         </Inf>
         <Inf>
           <TimeStamp Condition="'$(Configuration)|$(Platform)'=='Win10 
Debug|x64'">$(Version)</TimeStamp>
    @@ -297,8 +357,10 @@
         <ResourceCompile Include="ovsext.rc">
           <PreprocessorDefinitions 
Condition="'$(Configuration)|$(Platform)'=='Win8 
Release|x64'">%(PreprocessorDefinitions);NDIS_WDM=1;NDIS630=1;VersionWithDots=$(Version);VersionWithCommas=$(Version.Replace('.',','))</PreprocessorDefinitions>
           <PreprocessorDefinitions 
Condition="'$(Configuration)|$(Platform)'=='Win8 
Debug|x64'">%(PreprocessorDefinitions);NDIS_WDM=1;NDIS630=1;VersionWithDots=$(Version);VersionWithCommas=$(Version.Replace('.',','))</PreprocessorDefinitions>
    +      <PreprocessorDefinitions 
Condition="'$(Configuration)|$(Platform)'=='Win8Analyze|x64'">%(PreprocessorDefinitions);NDIS_WDM=1;NDIS630=1;VersionWithDots=$(Version);VersionWithCommas=$(Version.Replace('.',','))</PreprocessorDefinitions>
           <PreprocessorDefinitions 
Condition="'$(Configuration)|$(Platform)'=='Win8.1 
Release|x64'">%(PreprocessorDefinitions);NDIS_WDM=1;NDIS640=1;VersionWithDots=$(Version);VersionWithCommas=$(Version.Replace('.',','))</PreprocessorDefinitions>
           <PreprocessorDefinitions 
Condition="'$(Configuration)|$(Platform)'=='Win8.1 
Debug|x64'">%(PreprocessorDefinitions);NDIS_WDM=1;NDIS640=1;VersionWithDots=$(Version);VersionWithCommas=$(Version.Replace('.',','))</PreprocessorDefinitions>
    +      <PreprocessorDefinitions 
Condition="'$(Configuration)|$(Platform)'=='Win8.1Analyze|x64'">%(PreprocessorDefinitions);NDIS_WDM=1;NDIS640=1;VersionWithDots=$(Version);VersionWithCommas=$(Version.Replace('.',','))</PreprocessorDefinitions>
           <PreprocessorDefinitions 
Condition="'$(Configuration)|$(Platform)'=='Win10 
Release|x64'">%(PreprocessorDefinitions);NDIS_WDM=1;NDIS640=1;VersionWithDots=$(Version);VersionWithCommas=$(Version.Replace('.',','))</PreprocessorDefinitions>
           <PreprocessorDefinitions 
Condition="'$(Configuration)|$(Platform)'=='Win10 
Debug|x64'">%(PreprocessorDefinitions);NDIS_WDM=1;NDIS640=1;VersionWithDots=$(Version);VersionWithCommas=$(Version.Replace('.',','))</PreprocessorDefinitions>
         </ResourceCompile>
    diff --git a/datapath-windows/ovsext/ovsext.vcxproj.user 
b/datapath-windows/ovsext/ovsext.vcxproj.user
    index 75ea9d7..6231d93 100644
    --- a/datapath-windows/ovsext/ovsext.vcxproj.user
    +++ b/datapath-windows/ovsext/ovsext.vcxproj.user
    @@ -3,9 +3,15 @@
       <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Win8 
Debug|x64'">
         <SignMode>TestSign</SignMode>
       </PropertyGroup>
    +  <PropertyGroup 
Condition="'$(Configuration)|$(Platform)'=='Win8Analyze|x64'">
    +    <SignMode>TestSign</SignMode>
    +  </PropertyGroup>
       <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Win8.1 
Debug|x64'">
         <SignMode>TestSign</SignMode>
       </PropertyGroup>
    +  <PropertyGroup 
Condition="'$(Configuration)|$(Platform)'=='Win8.1Analyze|x64'">
    +    <SignMode>TestSign</SignMode>
    +  </PropertyGroup>
       <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Win10 
Debug|x64'">
         <SignMode>TestSign</SignMode>
       </PropertyGroup>
    -- 
    2.10.2.windows.1
    _______________________________________________
    dev mailing list
    d...@openvswitch.org
    
https://urldefense.proofpoint.com/v2/url?u=https-3A__mail.openvswitch.org_mailman_listinfo_ovs-2Ddev&d=DwICAg&c=uilaK90D4TOVoH58JNXRgQ&r=Q5z9tBe-nAOpE7LIHSPV8uy5-437agMXvkeHHMkR8Us&m=hBdLnILCQgexDTJePvg116OfeVU9b2io_JTkQAvCNcc&s=0ZzmN_yif6G_a7wt_4VIp9IQF3elniOzOoZN6Gc56q4&e=
 
    





_______________________________________________
dev mailing list
d...@openvswitch.org
https://mail.openvswitch.org/mailman/listinfo/ovs-dev

Reply via email to