AppendTag时支持设置Value
大石头 编写于 2024-05-07 09:15:16 智能大石头 提交于 2024-05-08 01:10:33
X
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
  <PropertyGroup>
    <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
    <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
    <ProductVersion>8.0.30703</ProductVersion>
    <SchemaVersion>2.0</SchemaVersion>
    <ProjectGuid>{55BA37EE-01A2-438F-A0FB-6B57440BF2F0}</ProjectGuid>
    <OutputType>Library</OutputType>
    <AppDesignerFolder>Properties</AppDesignerFolder>
    <RootNamespace>XTemplate</RootNamespace>
    <AssemblyName>XTemplate</AssemblyName>
    <FileAlignment>512</FileAlignment>
    <TargetFrameworkProfile />
  </PropertyGroup>
  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
    <TargetFrameworkVersion>v2.0</TargetFrameworkVersion>
    <DebugSymbols>true</DebugSymbols>
    <DebugType>full</DebugType>
    <Optimize>false</Optimize>
    <OutputPath>..\..\Bin2\</OutputPath>
    <DefineConstants>DEBUG;TRACE</DefineConstants>
    <ErrorReport>prompt</ErrorReport>
    <WarningLevel>4</WarningLevel>
    <DocumentationFile>..\..\Bin2\XTemplate.xml</DocumentationFile>
  </PropertyGroup>
  <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
    <TargetFrameworkVersion>v2.0</TargetFrameworkVersion>
    <DebugType>pdbonly</DebugType>
    <Optimize>true</Optimize>
    <OutputPath>..\..\Bin2\</OutputPath>
    <DefineConstants>TRACE</DefineConstants>
    <ErrorReport>prompt</ErrorReport>
    <WarningLevel>4</WarningLevel>
    <DocumentationFile>..\..\Bin2\XTemplate.xml</DocumentationFile>
  </PropertyGroup>
  <ItemGroup>
    <Reference Include="System" />
    <Reference Include="System.configuration" />
    <Reference Include="System.Data" />
    <Reference Include="System.Drawing" />
    <Reference Include="System.Web" />
    <Reference Include="System.Windows.Forms" />
    <Reference Include="System.Xml" />
  </ItemGroup>
  <ItemGroup>
    <Compile Include="..\NewLife.Core\Properties\AssemblyInfo_.cs">
      <Link>Properties\AssemblyInfo_.cs</Link>
    </Compile>
    <Compile Include="Tags\TagTemplate.cs" />
    <Compile Include="Templating\Directive.cs" />
    <Compile Include="Templating\Template2.cs">
      <DependentUpon>Template.cs</DependentUpon>
    </Compile>
    <Compile Include="Templating\TemplateException.cs" />
    <Compile Include="Properties\AssemblyInfo.cs" />
    <Compile Include="Templating\Block.cs" />
    <Compile Include="Templating\BlockType.cs" />
    <Compile Include="Templating\Template.cs" />
    <Compile Include="Templating\TemplateExecuteException.cs" />
    <Compile Include="Templating\TemplateItem.cs" />
    <Compile Include="Templating\TemplateParser.cs" />
    <Compile Include="Templating\TemplateBase.cs" />
    <Compile Include="Templating\TemplateStatus.cs" />
  </ItemGroup>
  <ItemGroup>
    <Service Include="{508349B6-6B84-4DF5-91F0-309BEEBAD82D}" />
  </ItemGroup>
  <ItemGroup>
    <EmbeddedResource Include="App.config" />
  </ItemGroup>
  <ItemGroup>
    <Content Include="说明.txt" />
    <EmbeddedResource Include="UpdateInfo.txt" />
    <Content Include="XTemplate架构.jpg" />
  </ItemGroup>
  <ItemGroup>
    <None Include="Test.xt" />
  </ItemGroup>
  <ItemGroup>
    <ProjectReference Include="..\NewLife.Core\NewLife.Core.Net20.csproj">
      <Project>{5813c22e-eeb3-4dee-a45c-bb218041193a}</Project>
      <Name>NewLife.Core.Net20</Name>
    </ProjectReference>
  </ItemGroup>
  <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  <!-- To modify your build process, add your task inside one of the targets below and uncomment it. 
       Other similar extension points exist, see Microsoft.Common.targets.
  <Target Name="BeforeBuild">
  </Target>
  <Target Name="AfterBuild">
  </Target>
  -->
</Project>