forked from Ruslan-B/FFmpeg.AutoGen
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Directory.Build.props
37 lines (33 loc) · 1.42 KB
/
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
28
29
30
31
32
33
34
35
36
37
<Project>
<PropertyGroup>
<PackageId>$(AssemblyName)</PackageId>
<Version>4.4.2</Version>
<Authors>Ruslan Balanukhin</Authors>
<Company>Rational Core</Company>
<Product>FFmpeg.AutoGen</Product>
<Copyright>Copyright © Ruslan Balanukhin 2021 All rights reserved.</Copyright>
<PackageProjectUrl>https://github.com/Ruslan-B/FFmpeg.AutoGen</PackageProjectUrl>
<RepositoryType>Git</RepositoryType>
<AssemblyVersion>$(Version)</AssemblyVersion>
<FileVersion>$(Version)</FileVersion>
<PackageTags>ffmpeg</PackageTags>
<PackageLicenseFile>LICENSE.txt</PackageLicenseFile>
<GeneratePackageOnBuild>false</GeneratePackageOnBuild>
</PropertyGroup>
<PropertyGroup>
<PublicSign Condition="'$(OS)' != 'Windows_NT'">true</PublicSign>
<SignAssembly>true</SignAssembly>
<DelaySign>false</DelaySign>
<AssemblyOriginatorKeyFile>$(MSBuildThisFileDirectory)FFmpeg.AutoGen.snk</AssemblyOriginatorKeyFile>
</PropertyGroup>
<PropertyGroup>
<LangVersion>latest</LangVersion>
</PropertyGroup>
<ItemGroup>
<None Include="$(MSBuildThisFileDirectory)LICENSE.txt" Link="LICENSE.txt" Pack="true" PackagePath="LICENSE.txt" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Net.Compilers.Toolset" Version="3.*" PrivateAssets="all" />
<PackageReference Include="Microsoft.NETFramework.ReferenceAssemblies" Version="1.*" PrivateAssets="all" />
</ItemGroup>
</Project>