Skip to content
Snippets Groups Projects
Select Git revision
  • 0bc169c45280d0f65f4b466a45883f2483989092
  • master default protected
  • Issue/2960-infiniteLoop
  • Issue/2960-fixValidationForAP
  • dev protected
  • Issue/2920-fixRemovingValues
  • Hotfix/2957-styleAndUpgrade
  • Hotfix/2955-storingFail
  • Issue/2943-uiFeedback
  • Issue/2551-enhanceSymbolDescriptionsInApplicationProfile
  • Issue/2598-vue3
  • Issue/2804-templateUI
  • Issue/2805-ignoreTemplatingValues
  • Issue/2851-fixBooleanInFormGenerator
  • Issue/2759-showMissingField
  • Issue/2703-vocabularyList
  • Issue/2729-fixSlowLoadingOfInstances
  • Issue/2525-fixedFixValues
  • Hotfix/2681-validationErrors
  • testing
  • Issue/2408-hasValue
  • v4.0.5
  • v4.0.4
  • v4.0.3
  • v4.0.2
  • v4.0.1
  • v4.0.0
  • v3.6.3
  • v3.6.2
  • v3.6.1
  • v3.6.0
  • v3.5.7
  • v3.5.6
  • v3.5.5
  • v3.5.4
  • v3.5.3
  • v3.5.2
  • v3.5.1
  • v3.5.0
  • v3.4.0
  • v3.3.0
41 results

InputBooleanCombobox.vue

Blame
  • Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    Database.csproj 2.24 KiB
    <Project Sdk="Microsoft.NET.Sdk">
    	<PropertyGroup>
    		<OutputType>Library</OutputType>
    		<RootNamespace>Coscine.Database</RootNamespace>
    		<AssemblyName>Coscine.Database</AssemblyName>
    		<TargetFrameworks>net6.0;net461</TargetFrameworks>
    		<Version>2.16.2</Version>
    	</PropertyGroup>
    	<PropertyGroup>
    		<Authors>RWTH Aachen University</Authors>
    		<Company>IT Center, RWTH Aachen University</Company>
    		<Copyright>2022 IT Center, RWTH Aachen University</Copyright>
    		<Description>Database is a part of the Coscine group.</Description>
    		<PackageLicenseExpression>MIT</PackageLicenseExpression>
    		<PackageProjectUrl>https://git.rwth-aachen.de/coscine/backend/libraries/database</PackageProjectUrl>
    		<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>
    	</PropertyGroup>
    	<PropertyGroup>
    		<SignAssembly>true</SignAssembly>
    		<AssemblyOriginatorKeyFile>Coscine.Database.Key.snk</AssemblyOriginatorKeyFile>
    	</PropertyGroup>
    	<ItemGroup>
    		<None Include="Coscine.Database.Key.snk" />
    		<Reference Include="System.Web" Condition="'$(TargetFramework)' == 'net461'" />
    	</ItemGroup>
    	<ItemGroup>
    		<Compile Include="..\Scaffolding\DataModel\*.*">
    			<Link>DataModel\%(Filename)%(Extension)</Link>
    		</Compile>
    	</ItemGroup>
    	<ItemGroup>
    		<PackageReference Include="Coscine.Configuration" Version="2.*-*" />
    		<PackageReference Include="LinqKit" Version="1.1.23" />
    		<PackageReference Include="Inflector.NetStandard" Version="1.2.2" />
    		<!-- Note: use newest Microsoft.EntityFrameworkCore Version for net6.0 -->
    		<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="6.0.4" Condition="'$(TargetFramework)' == 'net6.0'" PrivateAssets="all" />
    		<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="6.0.4" Condition="'$(TargetFramework)' == 'net6.0'" />
    		<!-- Note: use Microsoft.EntityFrameworkCore Version 3.x.x for compatibility with net461 -->
    		<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="3.1.12" Condition="'$(TargetFramework)' == 'net461'" PrivateAssets="all" />
    		<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="3.1.12" Condition="'$(TargetFramework)' == 'net461'" />
    	</ItemGroup>
    	<PropertyGroup>
    		<LangVersion>Preview</LangVersion>
    	</PropertyGroup>
    </Project>