-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathFeaturePackage.targets
More file actions
36 lines (32 loc) · 1.55 KB
/
Copy pathFeaturePackage.targets
File metadata and controls
36 lines (32 loc) · 1.55 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
<!--
//
// Common settings and targets for building Feature Packages
//
-->
<Project
DefaultTargets="Build"
xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<!-- This PropertyGroup defines the location and version of Silverlight and SDK for .Net projects (Metadata projects) -->
<PropertyGroup>
<SLTargetFrameworkDirectory Condition=" '$(TargetFrameworkDirectory)' == '' ">$(ProgramFiles)\Reference Assemblies\Microsoft\Framework\Silverlight\v5.0</SLTargetFrameworkDirectory>
<TargetFrameworkSDKDirectory Condition=" '$(TargetFrameworkSDKDirectory)' == '' ">$(ProgramFiles)\Microsoft SDKs\Silverlight\v5.0\Libraries\Client</TargetFrameworkSDKDirectory>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)' == 'Signed'">
<!-- Set SIGNED constant for CS projects -->
<DefineConstants Condition="'$(DefineTrace)' == ''">$(DefineConstants);SIGNED</DefineConstants>
<!-- Set SIGNED constant for VB projects -->
<DefineConstants Condition="'$(DefineTrace)' != ''">$(DefineConstants),SIGNED=1</DefineConstants>
<SignAssembly>true</SignAssembly>
<AssemblyOriginatorKeyFile>$(MSBuildThisFileDirectory)\snk\OpenRiaServices.snk</AssemblyOriginatorKeyFile>
</PropertyGroup>
<!--
<PropertyGroup Condition="'$(Configuration)' != 'Signed'">
<SignAssembly>false</SignAssembly>
<AssemblyOriginatorKeyFile></AssemblyOriginatorKeyFile>
</PropertyGroup>
-->
<!-- MSBuildCommunityTasks properties -->
<PropertyGroup>
<MSBuildCommunityTasksPath>.</MSBuildCommunityTasksPath>
</PropertyGroup>
</Project>