2013-04-18 23:26:58 +00:00
|
|
|
|
<?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>{D71B378F-A4BA-4263-A4F0-07A49A0C528D}</ProjectGuid>
|
|
|
|
|
<OutputType>Library</OutputType>
|
|
|
|
|
<AppDesignerFolder>Properties</AppDesignerFolder>
|
2013-05-03 12:44:51 +00:00
|
|
|
|
<RootNamespace>Mustache</RootNamespace>
|
2013-04-18 23:26:58 +00:00
|
|
|
|
<AssemblyName>mustache-sharp</AssemblyName>
|
|
|
|
|
<TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
|
|
|
|
|
<FileAlignment>512</FileAlignment>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
|
|
|
|
|
<DebugSymbols>true</DebugSymbols>
|
|
|
|
|
<DebugType>full</DebugType>
|
|
|
|
|
<Optimize>false</Optimize>
|
|
|
|
|
<OutputPath>bin\Debug\</OutputPath>
|
|
|
|
|
<DefineConstants>DEBUG;TRACE</DefineConstants>
|
|
|
|
|
<ErrorReport>prompt</ErrorReport>
|
|
|
|
|
<WarningLevel>4</WarningLevel>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
|
|
|
|
|
<DebugType>pdbonly</DebugType>
|
|
|
|
|
<Optimize>true</Optimize>
|
|
|
|
|
<OutputPath>bin\Release\</OutputPath>
|
|
|
|
|
<DefineConstants>TRACE</DefineConstants>
|
|
|
|
|
<ErrorReport>prompt</ErrorReport>
|
|
|
|
|
<WarningLevel>4</WarningLevel>
|
|
|
|
|
</PropertyGroup>
|
2015-11-20 22:42:18 +00:00
|
|
|
|
<PropertyGroup>
|
|
|
|
|
<SignAssembly>true</SignAssembly>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
<AssemblyOriginatorKeyFile>mustache-sharp.snk</AssemblyOriginatorKeyFile>
|
|
|
|
|
</PropertyGroup>
|
2013-04-18 23:26:58 +00:00
|
|
|
|
<ItemGroup>
|
|
|
|
|
<Reference Include="System" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<Compile Include="ArgumentCollection.cs" />
|
|
|
|
|
<Compile Include="CompoundGenerator.cs" />
|
|
|
|
|
<Compile Include="ConditionTagDefinition.cs" />
|
|
|
|
|
<Compile Include="ContentTagDefinition.cs" />
|
2013-04-25 01:21:00 +00:00
|
|
|
|
<Compile Include="Context.cs" />
|
2013-04-25 12:46:03 +00:00
|
|
|
|
<Compile Include="ContextParameter.cs" />
|
2016-03-21 17:41:46 +00:00
|
|
|
|
<Compile Include="Substitution.cs" />
|
|
|
|
|
<Compile Include="TagFormattedEventArgs.cs" />
|
|
|
|
|
<Compile Include="HtmlFormatCompiler.cs" />
|
2014-05-21 21:02:31 +00:00
|
|
|
|
<Compile Include="IArgument.cs" />
|
|
|
|
|
<Compile Include="NumberArgument.cs" />
|
|
|
|
|
<Compile Include="PlaceholderArgument.cs" />
|
|
|
|
|
<Compile Include="StringArgument.cs" />
|
2014-05-20 23:34:54 +00:00
|
|
|
|
<Compile Include="UpcastDictionary.cs" />
|
2014-05-21 21:02:31 +00:00
|
|
|
|
<Compile Include="VariableArgument.cs" />
|
2013-10-30 19:39:38 +00:00
|
|
|
|
<Compile Include="VariableFoundEventArgs.cs" />
|
2013-08-17 03:35:46 +00:00
|
|
|
|
<Compile Include="SetTagDefinition.cs" />
|
2013-07-23 12:44:48 +00:00
|
|
|
|
<Compile Include="NewlineTagDefinition.cs" />
|
2013-07-20 16:06:38 +00:00
|
|
|
|
<Compile Include="IndexTagDefinition.cs" />
|
2013-04-25 01:21:00 +00:00
|
|
|
|
<Compile Include="KeyFoundEventArgs.cs" />
|
2013-04-18 23:26:58 +00:00
|
|
|
|
<Compile Include="InlineTagDefinition.cs" />
|
|
|
|
|
<Compile Include="EachTagDefinition.cs" />
|
|
|
|
|
<Compile Include="ElifTagDefinition.cs" />
|
|
|
|
|
<Compile Include="ElseTagDefinition.cs" />
|
|
|
|
|
<Compile Include="FormatCompiler.cs" />
|
|
|
|
|
<Compile Include="Generator.cs" />
|
|
|
|
|
<Compile Include="IfTagDefinition.cs" />
|
|
|
|
|
<Compile Include="IGenerator.cs" />
|
|
|
|
|
<Compile Include="InlineGenerator.cs" />
|
2013-04-24 12:58:19 +00:00
|
|
|
|
<Compile Include="PlaceholderFoundEventArgs.cs" />
|
2013-04-18 23:26:58 +00:00
|
|
|
|
<Compile Include="KeyGenerator.cs" />
|
|
|
|
|
<Compile Include="MasterTagDefinition.cs" />
|
2013-04-25 01:21:00 +00:00
|
|
|
|
<Compile Include="KeyNotFoundEventArgs.cs" />
|
2013-04-18 23:26:58 +00:00
|
|
|
|
<Compile Include="NestedContext.cs" />
|
|
|
|
|
<Compile Include="Properties\AssemblyInfo.cs" />
|
|
|
|
|
<Compile Include="Properties\Resources.Designer.cs">
|
|
|
|
|
<AutoGen>True</AutoGen>
|
|
|
|
|
<DesignTime>True</DesignTime>
|
|
|
|
|
<DependentUpon>Resources.resx</DependentUpon>
|
|
|
|
|
</Compile>
|
|
|
|
|
<Compile Include="PropertyDictionary.cs" />
|
|
|
|
|
<Compile Include="RegexHelper.cs" />
|
|
|
|
|
<Compile Include="StaticGenerator.cs" />
|
|
|
|
|
<Compile Include="TagDefinition.cs" />
|
|
|
|
|
<Compile Include="TagParameter.cs" />
|
2013-08-17 03:35:46 +00:00
|
|
|
|
<Compile Include="Scope.cs" />
|
2013-10-28 19:58:50 +00:00
|
|
|
|
<Compile Include="ValueRequestEventArgs.cs" />
|
2013-08-17 03:35:46 +00:00
|
|
|
|
<Compile Include="WithTagDefinition.cs" />
|
2013-04-18 23:26:58 +00:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<EmbeddedResource Include="Properties\Resources.resx">
|
|
|
|
|
<Generator>ResXFileCodeGenerator</Generator>
|
|
|
|
|
<LastGenOutput>Resources.Designer.cs</LastGenOutput>
|
|
|
|
|
</EmbeddedResource>
|
|
|
|
|
</ItemGroup>
|
2015-11-20 22:42:18 +00:00
|
|
|
|
<ItemGroup>
|
|
|
|
|
<None Include="mustache-sharp.snk" />
|
|
|
|
|
</ItemGroup>
|
2013-04-18 23:26:58 +00:00
|
|
|
|
<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>
|
|
|
|
|
-->
|
2013-01-02 02:01:34 +00:00
|
|
|
|
</Project>
|