Code development platform for open source projects from the European Union institutions :large_blue_circle: EU Login authentication by SMS has been phased out. To see alternatives please check here

Skip to content
Snippets Groups Projects
Select Git revision
  • 4bf3d93b79d41170d201e2bc09291c610c18a0ba
  • tug-dev default
  • amdm3/develop
  • fix/scripts1
  • amdm2/develop
  • amdm2/main
  • playground
  • feat/changelog
  • fix/solution_tests
  • test/full_release_process
  • test/art10_test_execution
  • test/gitlab_files_api
  • test/multiplatform_david
  • trgbot
  • set-sast-config-3
  • set-sast-config-2
  • set-secret-detection-config-2
  • set-secret-detection-config-1
  • set-sast-config-1
  • test-linux-fixes
  • tug-stable
  • Release/v4.3.2
  • v1.0.1
  • v1.0.0
  • Build/v0.7.10.2996
  • v0.7.5b0+2524.multistep
  • Release/v3.3.14.2981-RC
  • Build/v0.7.9.2975
  • Release/v3.3.13.2924
  • Release/v3.3.13.2891-RC
  • Build/0.7.9.2890
  • Build/v0.7.9.2864
  • Build/v0.7.9.2849
  • Build/v0.7.9.2836
  • Release/TrailerTool_V0.9.0.2759
  • Release/TrailerTool_V0.9.0.2735
  • Release/TrailerTool_V0.9.0.2799
  • Release/v3.3.12.2800
  • Release/v3.3.12.2769-RC
  • Build/v0.7.9.2741
  • Build/v0.5.0.1812_VectoFF
41 results

Directory.Build.props

Blame
  • Forked from VECTO / VECTO Sim
    3249 commits behind the upstream repository.
    user avatar
    Michael KRISPER authored
    c01d4109
    History
    Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    Directory.Build.props 1.79 KiB
    <Project>
      <PropertyGroup>
        <DefineConstants />
        <!-- For a Release-Candidate uncomment the following line: -->
        <!--<DefineConstants>RELEASE_CANDIDATE</DefineConstants>-->
    
        <!-- For a Release uncomment the following line: -->
        <!--<DefineConstants>CERTIFICATION_RELEASE</DefineConstants>-->
    
        <!-- Global VECTO Version -->
        <MainProductVersion>0.7.7</MainProductVersion>
        <VersionSuffix>DEV</VersionSuffix>
    
        <!-- The following settings are used as default values for ALL projects -->
        <VersionPrefix>$(MainProductVersion).$([System.DateTime]::UtcNow.Subtract($([System.DateTime]::new(2015,1,1))).Days)</VersionPrefix>
        <Authors>Graz University of Technology</Authors>
        <Company>European Union</Company>
        <Copyright>Copyright © 2012-$([System.DateTime]::UtcNow.Year)</Copyright>
        <PlatformTarget>AnyCPU</PlatformTarget>
        <Deterministic>true</Deterministic>
        <AutoGenerateBindingRedirects>false</AutoGenerateBindingRedirects>
    	  <DefineTrace>false</DefineTrace>
        <RemoveIntegerChecks>true</RemoveIntegerChecks>
        <DebugType>none</DebugType>
        <WarningLevel>5</WarningLevel>
        <DebugSymbols>false</DebugSymbols>
      </PropertyGroup>
    
      <PropertyGroup Condition="$(DefineConstants.Contains('RELEASE_CANDIDATE'))">
        <VersionSuffix>RC</VersionSuffix>
      </PropertyGroup>
      <PropertyGroup Condition="$(DefineConstants.Contains('CERTIFICATION_RELEASE'))">
        <VersionSuffix></VersionSuffix>
      </PropertyGroup>
    
      <PropertyGroup Condition="'$(Configuration)'=='Debug'">
        <TreatWarningsAsErrors>false</TreatWarningsAsErrors>
        <RemoveIntegerChecks>false</RemoveIntegerChecks>
        <WarningLevel>5</WarningLevel>
        <DebugType>pdbonly</DebugType>
        <DebugSymbols>true</DebugSymbols>
        <CheckForOverflowUnderflow>true</CheckForOverflowUnderflow>
      </PropertyGroup>
    </Project>