forked from sass/libsass-net
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathLibSass.NET.csproj
81 lines (81 loc) · 4.18 KB
/
LibSass.NET.csproj
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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="14.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProjectGuid>{4AD8B048-7A30-4873-8D11-C0A5273E9458}</ProjectGuid>
<OutputType>Library</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>LibSass</RootNamespace>
<AssemblyName>LibSass.NET</AssemblyName>
<TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
<OutputPath>$(SolutionDir)bin\$(Configuration)\</OutputPath>
<IntermediateOutputPath>$(SolutionDir)bin\$(Configuration)\obj\</IntermediateOutputPath>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<Prefer32Bit>false</Prefer32Bit>
<PlatformTarget>AnyCPU</PlatformTarget>
<FileAlignment>512</FileAlignment>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<DefineConstants>DEBUG;TRACE</DefineConstants>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
<DefineConstants>TRACE</DefineConstants>
</PropertyGroup>
<ItemGroup>
<Compile Include="Compiler\Context\FunctionHandling.cs" />
<Compile Include="Compiler\Context\ImporterHandling.cs" />
<Compile Include="Compiler\Context\InteropUtils.cs" />
<Compile Include="Compiler\Options\SassFunction.cs" />
<Compile Include="Compiler\Context\OptionsHandling.cs" />
<Compile Include="Compiler\SassExterns64.cs" />
<Compile Include="Compiler\SassExterns32.cs" />
<Compile Include="Types\SassBool.cs" />
<Compile Include="Types\SassNull.cs" />
<Compile Include="Types\SassError.cs" />
<Compile Include="Types\SassWarning.cs" />
<Compile Include="Types\SassString.cs" />
<Compile Include="Types\SassListSeparator.cs" />
<Compile Include="Types\SassTypeException.cs" />
<Compile Include="Types\SassNumber.cs" />
<Compile Include="Types\SassMap.cs" />
<Compile Include="Types\SassList.cs" />
<Compile Include="Types\ISassExportableType.cs" />
<Compile Include="Types\SassColor.cs" />
<Compile Include="Types\ISassType.cs" />
<Compile Include="Compiler\Options\ISassOptions.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="Compiler\Context\SafeContextHandle.cs" />
<Compile Include="Compiler\Context\SafeDataContextHandle.cs" />
<Compile Include="Compiler\Context\SafeFileContextHandle.cs" />
<Compile Include="Compiler\Context\SafeStringHandle.cs" />
<Compile Include="Compiler\SassCompiler.cs" />
<Compile Include="Compiler\SassExterns.cs" />
<Compile Include="Compiler\Options\SassImport.cs" />
<Compile Include="Compiler\Options\SassOptions.cs" />
<Compile Include="Compiler\Options\SassOutputStyle.cs" />
<Compile Include="Compiler\SassResult.cs" />
<Compile Include="Types\TypeFactory.cs" />
</ItemGroup>
<ItemGroup>
<None Include="LibSass.Net.nuspec" />
<None Include="libsassnet.targets" />
</ItemGroup>
<ItemGroup>
<Reference Include="System" />
<Reference Include="System.Runtime.Serialization" />
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
<!-- Build LibSass -->
<Target Name="AfterBuild">
<MSBuild Targets="Build" Projects="..\LibSass\win\libsass.sln" BuildInParallel="true" Properties="Configuration=$(Configuration);Platform=Win32;TargetName=libsass32;OutDir=$(OutputPath);IntDir=$(IntermediateOutputPath)" />
<MSBuild Targets="Build" Projects="..\LibSass\win\libsass.sln" BuildInParallel="true" Properties="Configuration=$(Configuration);Platform=Win64;TargetName=libsass64;OutDir=$(OutputPath);IntDir=$(IntermediateOutputPath)" />
</Target>
</Project>