-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGlobal.proj
More file actions
28 lines (25 loc) · 1.36 KB
/
Global.proj
File metadata and controls
28 lines (25 loc) · 1.36 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<?xml version="1.0" encoding="utf-8"?>
<Project>
<Import Project="DotNetSdkMono.props" />
<PropertyGroup>
<LangVersion>latest</LangVersion>
<VersionPrefix>2.0.0</VersionPrefix>
<Product>FluentMigrator</Product>
<Copyright>Sean Chambers and the FluentMigrator project 2008-2018</Copyright>
<Company>FluentMigrator Project</Company>
<Authors>Sean Chambers;Josh Coffman;Tom Marien;Mark Junker</Authors>
<PackageProjectUrl>https://github.com/fluentmigrator/fluentmigrator/wiki</PackageProjectUrl>
<PackageLicenseUrl>https://github.com/fluentmigrator/fluentmigrator/blob/master/LICENSE.txt</PackageLicenseUrl>
<PackageReleaseNotes>https://github.com/fluentmigrator/fluentmigrator/releases</PackageReleaseNotes>
<RepositoryUrl>https://github.com/fluentmigrator/fluentmigrator.git</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<MinClientVersion>3.5</MinClientVersion>
<IsPackable>false</IsPackable>
</PropertyGroup>
<ItemGroup>
<Compile Include="$(MSBuildThisFileDirectory)src/GlobalAssemblyInfo.cs" Link="Properties\GlobalAssemblyInfo.cs" />
</ItemGroup>
<PropertyGroup Condition="'$(TargetFramework)'=='net40' or '$(TargetFramework)'=='net45' or '$(TargetFramework)'=='net452' or '$(TargetFramework)'=='net461' ">
<DefineConstants>$(DefineConstants);NETFRAMEWORK</DefineConstants>
</PropertyGroup>
</Project>