-
-
Notifications
You must be signed in to change notification settings - Fork 323
/
Directory.Build.props
26 lines (23 loc) · 929 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
<Project>
<PropertyGroup>
<PackageId>$(AssemblyName)</PackageId>
<Version>7.0</Version>
<Authors>Ruslan Balanukhin</Authors>
<Company>Rationale One</Company>
<Product>FFmpeg.AutoGen</Product>
<Copyright>Copyright © Ruslan Balanukhin 2023 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>
<LangVersion>latest</LangVersion>
</PropertyGroup>
<ItemGroup>
<None Include="$(MSBuildThisFileDirectory)LICENSE.txt" Link="LICENSE.txt" Pack="true" PackagePath="LICENSE.txt" />
</ItemGroup>
</Project>