-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcommon.props
More file actions
61 lines (59 loc) · 2.61 KB
/
common.props
File metadata and controls
61 lines (59 loc) · 2.61 KB
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
55
56
57
58
59
60
61
<Project>
<PropertyGroup>
<Company>Deploy Software Solutions, inc.</Company>
<Copyright>2018-2026 Deploy Software Solutions, inc.</Copyright>
<Version>11.0.0</Version>
<Authors>Nicholas Kellett</Authors>
<TargetFramework>net10.0</TargetFramework>
<TargetFrameworks>net10.0</TargetFrameworks>
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
<GenerateBindingRedirectsOutputType>true</GenerateBindingRedirectsOutputType>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance>
<NoWarn>$(NoWarn);CS1591</NoWarn>
<PackageIcon>icon.png</PackageIcon>
<PackageLicenseFile>LICENSE.md</PackageLicenseFile>
<PackageReadmeFile>README.md</PackageReadmeFile>
<PackageProjectUrl>https://github.com/DeploySolutions/launchpad-shared</PackageProjectUrl>
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
<RepositoryType>git</RepositoryType>
<RepositoryUrl>https://github.com/DeploySolutions/launchpad-shared</RepositoryUrl>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)' == 'Release' ">
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
</PropertyGroup>
<ItemGroup>
<None Include="$(SolutionDir)LICENSE.md" Link="LICENSE.md">
<PackagePath></PackagePath>
<Pack>True</Pack>
</None>
<None Include="$(SolutionDir)icon.png" Link="icon.png">
<PackagePath></PackagePath>
<Pack>True</Pack>
</None>
<None Include="$(SolutionDir)README.md" Pack="true" PackagePath="" />
</ItemGroup>
<!-- Custom Target to Copy Debug Assemblies -->
<Target Name="CopyDebugAssemblies" AfterTargets="Build">
<PropertyGroup>
<!-- Define the build folder relative to the solution directory -->
<BuildOutputFolder>$(SolutionDir)build\$(MSBuildProjectName)</BuildOutputFolder>
<SharedBuildOutputFolder>$(SolutionDir)build\shared\</SharedBuildOutputFolder>
</PropertyGroup>
<ItemGroup>
<!-- Include the Debug assembly and its metadata -->
<DebugAssemblies Include="$(OutputPath)*.*" />
</ItemGroup>
<MakeDir Directories="$(BuildOutputFolder)" />
<Copy
SourceFiles="@(DebugAssemblies)"
DestinationFolder="$(BuildOutputFolder)"
OverwriteReadOnlyFiles="true" />
<MakeDir Directories="$(SharedBuildOutputFolder)" />
<Copy
SourceFiles="@(DebugAssemblies)"
DestinationFolder="$(SharedBuildOutputFolder)"
OverwriteReadOnlyFiles="true" />
</Target>
</Project>