-
Notifications
You must be signed in to change notification settings - Fork 33
/
Directory.Build.props
54 lines (46 loc) · 2.33 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<ItemGroup>
<SourceRoot Include="$(MSBuildThisFileDirectory)/"/>
</ItemGroup>
<PropertyGroup>
<Copyright>Copyright © 2023 Imazen LLC</Copyright>
<PackageProjectUrl>https://github.com/imazen/imageflow-dotnet-server</PackageProjectUrl>
<RepositoryUrl Condition="'$(GITHUB_REPOSITORY)' != ''">$(GITHUB_SERVER_URL)/$(GITHUB_REPOSITORY)</RepositoryUrl>
<SourceRevisionId Condition="'$(SourceRevisionId)' == ''">$(GITHUB_SHA)</SourceRevisionId>
<RepositoryBranch>main</RepositoryBranch>
<Authors>imazen,lilith</Authors>
<Owners>imazen,lilith</Owners>
<Company>Imazen</Company>
<CompanyName>Imazen</CompanyName>
<Product>Imageflow Server</Product>
<RepositoryType>git</RepositoryType>
<EmbedUntrackedSources>true</EmbedUntrackedSources>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
<Version Condition="'$(Version)' == ''">$(TAGGED_VERSION)</Version>
<VersionPrefix>0.1.0</VersionPrefix>
<VersionSuffix>-notset</VersionSuffix>
<IsPackable>false</IsPackable>
<RestoreLockedMode>false</RestoreLockedMode>
</PropertyGroup>
<PropertyGroup>
<PackageTags>Image;Resize;Optimize;Crop;Gif;Jpg;Jpeg;Bitmap;Png;Core;WebP;ImageResizer;Imageflow;Rotate;Imaging;Crunch</PackageTags>
<PackageLicenseExpression>AGPL-3.0-or-later</PackageLicenseExpression>
</PropertyGroup>
<PropertyGroup Condition="'$(CI)' == 'True'">
<ContinuousIntegrationBuild>true</ContinuousIntegrationBuild>
<!-- This causes pain-->
<!-- <RestoreLockedMode>true</RestoreLockedMode>-->
</PropertyGroup>
<PropertyGroup Condition="'$(CI)' == 'true'">
<ContinuousIntegrationBuild>true</ContinuousIntegrationBuild>
<!-- This causes pain-->
<!-- <RestoreLockedMode>true</RestoreLockedMode>-->
</PropertyGroup>
<PropertyGroup>
<RestorePackagesWithLockFile>true</RestorePackagesWithLockFile>
<NoWarn>NU1603</NoWarn>
<DisableImplicitNuGetFallbackFolder>true</DisableImplicitNuGetFallbackFolder>
</PropertyGroup>
</Project>