|
| 1 | +<Project Sdk="Microsoft.NET.Sdk"> |
| 2 | + |
| 3 | + <PropertyGroup> |
| 4 | + <PackageId>NetOfficeFw.Build</PackageId> |
| 5 | + <TargetFrameworks>net462</TargetFrameworks> |
| 6 | + <RootNamespace>NetOfficeFw.Build</RootNamespace> |
| 7 | + <LangVersion>8</LangVersion> |
| 8 | + <BuildOutputTargetFolder>tasks</BuildOutputTargetFolder> |
| 9 | + </PropertyGroup> |
| 10 | + |
| 11 | + <PropertyGroup> |
| 12 | + <VersionPrefix>2.0.0</VersionPrefix> |
| 13 | + </PropertyGroup> |
| 14 | + |
| 15 | + <PropertyGroup> |
| 16 | + <Product>NetOffice</Product> |
| 17 | + <AssemblyTitle>NetOffice Build Tasks</AssemblyTitle> |
| 18 | + <Description>NetOffice build extensions for developing Microsoft Office add-ins. Helps with registering and cleanup of NetOffice add-ins during development.</Description> |
| 19 | + <Copyright>Copyright © 2021 Jozef Izso</Copyright> |
| 20 | + <Company>NetOfficeFw</Company> |
| 21 | + <Authors>Jozef Izso</Authors> |
| 22 | + <RepositoryUrl>https://github.com/NetOfficeFw/BuildTasks.git</RepositoryUrl> |
| 23 | + <PackageProjectUrl>https://github.com/NetOfficeFw/BuildTasks</PackageProjectUrl> |
| 24 | + <PackageLicenseExpression>MIT</PackageLicenseExpression> |
| 25 | + <PackageReadmeFile>README.md</PackageReadmeFile> |
| 26 | + <PackageIcon>Icon.png</PackageIcon> |
| 27 | + </PropertyGroup> |
| 28 | + |
| 29 | + <PropertyGroup> |
| 30 | + <IsPackable>true</IsPackable> |
| 31 | + |
| 32 | + <PackageTags>MSBuild Tasks Office addin extensions NetOffice NetOfficeFw</PackageTags> |
| 33 | + <DevelopmentDependency>true</DevelopmentDependency> |
| 34 | + <SuppressDependenciesWhenPacking>true</SuppressDependenciesWhenPacking> |
| 35 | + |
| 36 | + <!-- NU5100: this package is build tasks only and does not contain anyreferencable libraries --> |
| 37 | + <NoWarn>NU5100</NoWarn> |
| 38 | + </PropertyGroup> |
| 39 | + |
| 40 | + <ItemGroup> |
| 41 | + <PackageReference Include="Microsoft.Build.Framework" Version="15.1.1012" PrivateAssets="All" /> |
| 42 | + <PackageReference Include="Microsoft.Build.Utilities.Core" Version="15.1.1012" PrivateAssets="All" /> |
| 43 | + </ItemGroup> |
| 44 | + |
| 45 | + <ItemGroup> |
| 46 | + <None Include="README.md" Pack="true" PackagePath="\" /> |
| 47 | + <None Include="Icon.png" Pack="true" PackagePath="\" /> |
| 48 | + </ItemGroup> |
| 49 | + |
| 50 | + <ItemGroup> |
| 51 | + <None Include="build/NetOfficeFw.Build.props" Pack="true" PackagePath="build\" /> |
| 52 | + <None Include="build/NetOfficeFw.Build.targets" Pack="true" PackagePath="build\" /> |
| 53 | + </ItemGroup> |
| 54 | +</Project> |
0 commit comments