-
Notifications
You must be signed in to change notification settings - Fork 904
Expand file tree
/
Copy pathSystem.Web.Optimization.React.csproj
More file actions
49 lines (43 loc) · 2.19 KB
/
Copy pathSystem.Web.Optimization.React.csproj
File metadata and controls
49 lines (43 loc) · 2.19 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
37
38
39
40
41
42
43
44
45
46
47
48
49
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<Description>Allows you to transpile JavaScript via Babel in the ASP.NET Web Optimization Framework.</Description>
<Copyright>Copyright 2014-Present Facebook, Inc</Copyright>
<AssemblyTitle>ReactJS.NET - Babel for ASP.NET Web Optimization Framework</AssemblyTitle>
<Authors>Daniel Lo Nigro</Authors>
<TargetFramework>net40</TargetFramework>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<AssemblyName>System.Web.Optimization.React</AssemblyName>
<AssemblyOriginatorKeyFile>../key.snk</AssemblyOriginatorKeyFile>
<SignAssembly>true</SignAssembly>
<PublicSign Condition=" '$(OS)' != 'Windows_NT' ">true</PublicSign>
<PackageId>System.Web.Optimization.React</PackageId>
<PackageTags>asp.net;mvc;asp;jquery;javascript;js;react;facebook;reactjs;babel</PackageTags>
<PackageIcon>logo_64.png</PackageIcon>
<PackageProjectUrl>https://github.com/reactjs/react.net</PackageProjectUrl>
<PackageLicense>https://github.com/reactjs/React.NET#licence</PackageLicense>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<EmbedUntrackedSources>true</EmbedUntrackedSources>
<AllowedOutputExtensionsInPackageBuildOutputFolder>$(AllowedOutputExtensionsInPackageBuildOutputFolder);.pdb</AllowedOutputExtensionsInPackageBuildOutputFolder>
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
</PropertyGroup>
<ItemGroup>
<Compile Include="..\SharedAssemblyInfo.cs" />
<Compile Include="..\SharedAssemblyVersionInfo.cs" />
<Content Include="readme.txt">
<Pack>true</Pack>
<PackagePath>content\</PackagePath>
</Content>
<None Include="..\..\site\jekyll\img\logo_64.png" Pack="true" PackagePath="\"/>
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\React.Core\React.Core.csproj" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.AspNet.Web.Optimization" Version="1.1.3" />
<PackageReference Include="Microsoft.Sourcelink.Github" Version="1.0.0" PrivateAssets="All" />
</ItemGroup>
<ItemGroup Condition=" '$(TargetFramework)' == 'net40' ">
<Reference Include="System" />
<Reference Include="Microsoft.CSharp" />
</ItemGroup>
</Project>