forked from mono/taglib-sharp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Directory.Build.props
27 lines (21 loc) · 967 Bytes
/
Directory.Build.props
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
<Project>
<PropertyGroup>
<ReleaseVersion>2.3.0.0</ReleaseVersion>
<RepositoryUrl>https://github.com/mono/taglib-sharp</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<!-- Make sure to update Directory.Build.targets too! -->
<ExeTargetFrameworks>net462;netcoreapp3.1</ExeTargetFrameworks>
<LibTargetFrameworks>net462;netstandard2.0</LibTargetFrameworks>
<LangVersion>latest</LangVersion>
</PropertyGroup>
<PropertyGroup Condition="'$(TargetFramework)' == 'net462'">
<DebugType>full</DebugType>
</PropertyGroup>
<!-- Allow building net framework using mono -->
<ItemGroup Condition="$(TargetFramework.StartsWith('net4')) and '$(OS)' == 'Unix'">
<PackageReference Include="Microsoft.NETFramework.ReferenceAssemblies" Version="1.0.0">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
</PackageReference>
</ItemGroup>
</Project>