forked from heywills/StagingConfigurationModule
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDirectory.Build.props
28 lines (26 loc) · 1.28 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
<?xml version="1.0" encoding="utf-8"?>
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<Title>KenticoCommunity.StagingConfigurationModule</Title>
<Copyright>Copyright © $([System.DateTime]::Now.Year)</Copyright>
<Trademark></Trademark>
<Product>$(Title)</Product>
<VersionPrefix>13.0.0.0</VersionPrefix>
<Description>
Simplify Kentico Xperience deployments using this module. It enables configuring the staging feature, so that Kentico objects can be automatically excluded by type, child relationships, and even media libraries.
</Description>
</PropertyGroup>
<ItemGroup>
<AssemblyAttribute Include="CMS.AssemblyDiscoverableAttribute">
</AssemblyAttribute>
<AssemblyAttribute Include="System.Runtime.CompilerServices.InternalsVisibleTo">
<_Parameter1>$(MSBuildProjectName).Tests</_Parameter1>
</AssemblyAttribute>
<AssemblyAttribute Include="System.Runtime.CompilerServices.InternalsVisibleTo">
<_Parameter1>$(MSBuildProjectName).NetFramework.Tests</_Parameter1>
</AssemblyAttribute>
<AssemblyAttribute Include="System.Runtime.CompilerServices.InternalsVisibleTo">
<_Parameter1>$(MSBuildProjectName).NetCore.Tests</_Parameter1>
</AssemblyAttribute>
</ItemGroup>
</Project>