Add missing build files

2.2-servicing
bubibubi 8 years ago
parent def7a5cc6f
commit 854620f5b9

@ -0,0 +1,22 @@
using System.Reflection;
using System.Runtime.InteropServices;
#if DEBUG
[assembly: AssemblyConfiguration("Debug")]
#else
[assembly: AssemblyConfiguration("Release")]
#endif
[assembly: AssemblyCompany("Bubi")]
[assembly: AssemblyProduct("EntityFrameworkCore.Jet")]
[assembly: AssemblyCopyright("Copyright © 2017 - Bubi")]
[assembly: AssemblyTrademark("Before use any of the trademarks, check if they are registered")]
[assembly: AssemblyCulture("")]
[assembly: ComVisible(false)]
[assembly: Guid("e77112b7-b6ba-43a8-b21f-dd79a7a47a2f")]
[assembly: AssemblyVersion("2.0.0")]
[assembly: AssemblyFileVersion("2.0.0.7")]
[assembly: AssemblyInformationalVersion("2.0.0")]

@ -0,0 +1,22 @@
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="dependencies.props" />
<Import Project="..\version.xml" />
<PropertyGroup>
<AssemblyOriginatorKeyFile>$(MSBuildThisFileDirectory)Key.snk</AssemblyOriginatorKeyFile>
<PackageTags>Entity Framework Core;entity-framework-core;EF;Data;O/RM</PackageTags>
<Product>Microsoft Entity Framework Core</Product>
<PublicSign Condition="'$(OS)' != 'Windows_NT'">True</PublicSign>
<RepositoryType>git</RepositoryType>
<RepositoryUrl>https://github.com/aspnet/EntityFramework.git</RepositoryUrl>
<SignAssembly>True</SignAssembly>
<VersionSuffix Condition="'$(VersionSuffix)' != '' And '$(BuildNumber)' != ''">$(VersionSuffix)-$(BuildNumber)</VersionSuffix>
<DebugType Condition="'$(Configuration)' == 'Debug' AND '$(OS)' == 'Windows_NT'">full</DebugType>
<NoWarn>$(NoWarn);xUnit1004</NoWarn>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
</PropertyGroup>
<ItemGroup>
<EmbeddedResource Include="**\*.rd.xml" />
</ItemGroup>
<ItemGroup>
</ItemGroup>
</Project>

@ -0,0 +1,31 @@
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<AspNetCoreVersion>2.1.0-*</AspNetCoreVersion>
<CoreFxVersion>4.4.0-*</CoreFxVersion>
<DiagnosticSourceVersion>4.4.1-*</DiagnosticSourceVersion>
<DependencyModelVersion>2.0.0-*</DependencyModelVersion>
<InternalAspNetCoreSdkVersion>2.1.1-*</InternalAspNetCoreSdkVersion>
<JsonNetVersion>10.0.1</JsonNetVersion>
<NETStandardImplicitPackageVersion>2.0.0-*</NETStandardImplicitPackageVersion>
<NETStandardLibraryNETFrameworkVersion>2.0.0-*</NETStandardLibraryNETFrameworkVersion>
<RelinqVersion>2.2.0-alpha-002</RelinqVersion>
<RoslynVersion>2.3.1</RoslynVersion>
<RuntimeFrameworkVersion Condition="'$(TargetFramework)'=='netcoreapp2.0'">2.0.0-*</RuntimeFrameworkVersion>
<SQLitePCLRawVersion>1.1.8</SQLitePCLRawVersion>
<StyleCopAnalyzersVersion>1.0.0</StyleCopAnalyzersVersion>
<SystemCollectionsImmutableVersion>1.4.0-*</SystemCollectionsImmutableVersion>
<SystemInteractiveAsyncVersion>3.1.1</SystemInteractiveAsyncVersion>
<TestSdkVersion>15.3.0</TestSdkVersion>
<XunitVersion>2.3.0-beta4-build3742</XunitVersion>
<XunitVersionInSpecProjects>2.2.0</XunitVersionInSpecProjects>
</PropertyGroup>
<!-- Following package versions must match with what is available on NuGet -->
<PropertyGroup>
<BenchmarkDotNetVersion>0.10.9</BenchmarkDotNetVersion>
<EF6Version>6.1.3</EF6Version>
<EFCore1Version>1.1.2</EFCore1Version>
<EFCore1SqlClientVersion>4.3.1</EFCore1SqlClientVersion>
<EFCore2Version>2.0.0</EFCore2Version>
<EFCore2SqlClientVersion>4.4.0</EFCore2SqlClientVersion>
</PropertyGroup>
</Project>

@ -0,0 +1,15 @@
<Project>
<PropertyGroup>
<CoreOnly Condition="'$(CoreOnly)' == ''">False</CoreOnly>
</PropertyGroup>
<ItemGroup>
<ExcludeFromTest Include="$(RepositoryRoot)test\EFCore.Benchmarks.EFCore\*.csproj" />
<ExcludeFromTest Include="$(RepositoryRoot)test\EFCore.SqlServer.FunctionalTests\*.csproj" Condition="'$(TRAVIS)' == 'true'" />
<ExcludeFromTest Include="$(RepositoryRoot)test\EFCore.SqlServer.Design.FunctionalTests\*.csproj" Condition="'$(TRAVIS)' == 'true'" />
<ExcludeSolutions Include="$(RepositoryRoot)EFCore.Benchmarks.sln" />
<ExcludeSolutions Include="$(RepositoryRoot)EFCore.Runtime.sln" />
</ItemGroup>
</Project>

@ -0,0 +1,11 @@
<Project>
<Target Name="_FilterTestProjects" BeforeTargets="TestProjects">
<ItemGroup Condition="'$(TestFilter)' != ''">
<ProjectsToTest Remove="@(ProjectsToTest)"/>
<ProjectsToTest Include="$(RepositoryRoot)test\*$(TestFilter)*\*.csproj" Exclude="@(ExcludeFromTest)" />
</ItemGroup>
<Error Text="Could not find test projects to run" Condition="@(ProjectsToTest->Count()) == 0" />
</Target>
</Project>
Loading…
Cancel
Save