diff options
Diffstat (limited to 'src/wixext/WixToolset.VisualStudio.wixext.csproj')
| -rw-r--r-- | src/wixext/WixToolset.VisualStudio.wixext.csproj | 45 |
1 files changed, 4 insertions, 41 deletions
diff --git a/src/wixext/WixToolset.VisualStudio.wixext.csproj b/src/wixext/WixToolset.VisualStudio.wixext.csproj index 0b092662..e0c4a983 100644 --- a/src/wixext/WixToolset.VisualStudio.wixext.csproj +++ b/src/wixext/WixToolset.VisualStudio.wixext.csproj | |||
| @@ -4,66 +4,29 @@ | |||
| 4 | <Project Sdk="Microsoft.NET.Sdk"> | 4 | <Project Sdk="Microsoft.NET.Sdk"> |
| 5 | <PropertyGroup> | 5 | <PropertyGroup> |
| 6 | <TargetFramework>netstandard2.0</TargetFramework> | 6 | <TargetFramework>netstandard2.0</TargetFramework> |
| 7 | <RootNamespace>WixToolset.Extensions</RootNamespace> | 7 | <RootNamespace>WixToolset.VisualStudio</RootNamespace> |
| 8 | <Description>WiX Toolset Visual Studio Extension</Description> | 8 | <Description>WiX Toolset Visual Studio Extension</Description> |
| 9 | <Title>WiX Toolset VS Extension</Title> | 9 | <Title>WiX Toolset VS Extension</Title> |
| 10 | <IsTool>true</IsTool> | 10 | <IsTool>true</IsTool> |
| 11 | <ContentTargetFolders>build</ContentTargetFolders> | 11 | <ContentTargetFolders>build</ContentTargetFolders> |
| 12 | </PropertyGroup> | 12 | </PropertyGroup> |
| 13 | 13 | ||
| 14 | <PropertyGroup> | ||
| 15 | <NoWarn>NU1701</NoWarn> | ||
| 16 | </PropertyGroup> | ||
| 17 | |||
| 18 | <ItemGroup> | ||
| 19 | <EmbeddedResource Include="Data\tables.xml"> | ||
| 20 | <LogicalName>$(RootNamespace).Data.tables.xml</LogicalName> | ||
| 21 | </EmbeddedResource> | ||
| 22 | |||
| 23 | <MsgGenSource Include="Data\messages.xml"> | ||
| 24 | <ResourcesLogicalName>$(RootNamespace).Data.Messages.resources</ResourcesLogicalName> | ||
| 25 | </MsgGenSource> | ||
| 26 | |||
| 27 | <EmbeddedResource Include="Xsd\vs.xsd"> | ||
| 28 | <LogicalName>$(RootNamespace).Xsd.vs.xsd</LogicalName> | ||
| 29 | <Pack>true</Pack> | ||
| 30 | <PackagePath>tools</PackagePath> | ||
| 31 | </EmbeddedResource> | ||
| 32 | |||
| 33 | <XsdGenSource Include="Xsd\vs.xsd"> | ||
| 34 | <CommonNamespace>WixToolset.Data.Serialize</CommonNamespace> | ||
| 35 | <Namespace>WixToolset.Extensions.Serialize.VS</Namespace> | ||
| 36 | </XsdGenSource> | ||
| 37 | |||
| 38 | <EmbeddedResource Include="$(OutputPath)..\vs.wixlib"> | ||
| 39 | <Link>Data\vs.wixlib</Link> | ||
| 40 | </EmbeddedResource> | ||
| 41 | </ItemGroup> | ||
| 42 | |||
| 43 | <ItemGroup> | 14 | <ItemGroup> |
| 44 | <Content Include="$(MSBuildThisFileName).targets" /> | 15 | <Content Include="$(MSBuildThisFileName).targets" /> |
| 16 | <Content Include="vs.xsd" PackagePath="tools" /> | ||
| 17 | <EmbeddedResource Include="$(OutputPath)..\vs.wixlib" /> | ||
| 45 | </ItemGroup> | 18 | </ItemGroup> |
| 46 | 19 | ||
| 47 | <ItemGroup> | 20 | <ItemGroup> |
| 48 | <ProjectReference Include="$(WixToolsetRootFolder)\Data\src\WixToolset.Data\WixToolset.Data.csproj" Condition=" '$(Configuration)' == 'Debug' And Exists('$(WixToolsetRootFolder)\Data\src\WixToolset.Data\WixToolset.Data.csproj') " /> | ||
| 49 | <PackageReference Include="WixToolset.Data" Version="4.0.*" Condition=" '$(Configuration)' == 'Release' Or !Exists('$(WixToolsetRootFolder)\Data\src\WixToolset.Data\WixToolset.Data.csproj') " PrivateAssets="all" /> | ||
| 50 | |||
| 51 | <ProjectReference Include="$(WixToolsetRootFolder)\Extensibility\src\WixToolset.Extensibility\WixToolset.Extensibility.csproj" Condition=" '$(Configuration)' == 'Debug' And Exists('$(WixToolsetRootFolder)\Extensibility\src\WixToolset.Extensibility\WixToolset.Extensibility.csproj') " /> | 21 | <ProjectReference Include="$(WixToolsetRootFolder)\Extensibility\src\WixToolset.Extensibility\WixToolset.Extensibility.csproj" Condition=" '$(Configuration)' == 'Debug' And Exists('$(WixToolsetRootFolder)\Extensibility\src\WixToolset.Extensibility\WixToolset.Extensibility.csproj') " /> |
| 52 | <PackageReference Include="WixToolset.Extensibility" Version="4.0.*" Condition=" '$(Configuration)' == 'Release' Or !Exists('$(WixToolsetRootFolder)\Extensibility\src\WixToolset.Extensibility\WixToolset.Extensibility.csproj') " PrivateAssets="all" /> | 22 | <PackageReference Include="WixToolset.Extensibility" Version="4.0.*" Condition=" '$(Configuration)' == 'Release' Or !Exists('$(WixToolsetRootFolder)\Extensibility\src\WixToolset.Extensibility\WixToolset.Extensibility.csproj') " PrivateAssets="all" /> |
| 53 | |||
| 54 | <ProjectReference Include="$(WixToolsetRootFolder)\Core\src\WixToolset.Core\WixToolset.Core.csproj" Condition=" '$(Configuration)' == 'Debug' And Exists('$(WixToolsetRootFolder)\Core\src\WixToolset.Core\WixToolset.Core.csproj') " /> | ||
| 55 | <PackageReference Include="WixToolset.Core" Version="4.0.*" Condition=" '$(Configuration)' == 'Release' Or !Exists('$(WixToolsetRootFolder)\Core\src\WixToolset.Core\WixToolset.Core.csproj') " PrivateAssets="all" /> | ||
| 56 | </ItemGroup> | 23 | </ItemGroup> |
| 57 | 24 | ||
| 58 | <ItemGroup> | 25 | <ItemGroup> |
| 59 | <ProjectReference Include="..\wixlib\vs.wixproj"> | 26 | <ProjectReference Include="..\wixlib\vs.wixproj" ReferenceOutputAssembly="false" /> |
| 60 | <ReferenceOutputAssembly>false</ReferenceOutputAssembly> | ||
| 61 | </ProjectReference> | ||
| 62 | </ItemGroup> | 27 | </ItemGroup> |
| 63 | 28 | ||
| 64 | <ItemGroup> | 29 | <ItemGroup> |
| 65 | <PackageReference Include="Nerdbank.GitVersioning" Version="2.0.41" PrivateAssets="all" /> | 30 | <PackageReference Include="Nerdbank.GitVersioning" Version="2.0.41" PrivateAssets="all" /> |
| 66 | <PackageReference Include="WixBuildTools.MsgGen" Version="4.0.*" PrivateAssets="all" /> | ||
| 67 | <PackageReference Include="WixBuildTools.XsdGen" Version="4.0.*" PrivateAssets="all" /> | ||
| 68 | </ItemGroup> | 31 | </ItemGroup> |
| 69 | </Project> | 32 | </Project> |
