diff options
author | crupest <crupest@outlook.com> | 2019-02-04 23:25:33 +0800 |
---|---|---|
committer | crupest <crupest@outlook.com> | 2019-02-04 23:25:33 +0800 |
commit | fdc51c9e4ac225311e4e14923e6b48efbd05a6e1 (patch) | |
tree | 387fa924f0fbdd7b40a25029d5e7c3955764272b /Timeline/Timeline.csproj | |
download | timeline-fdc51c9e4ac225311e4e14923e6b48efbd05a6e1.tar.gz timeline-fdc51c9e4ac225311e4e14923e6b48efbd05a6e1.tar.bz2 timeline-fdc51c9e4ac225311e4e14923e6b48efbd05a6e1.zip |
Init commit.
Diffstat (limited to 'Timeline/Timeline.csproj')
-rw-r--r-- | Timeline/Timeline.csproj | 60 |
1 files changed, 60 insertions, 0 deletions
diff --git a/Timeline/Timeline.csproj b/Timeline/Timeline.csproj new file mode 100644 index 00000000..9be6893a --- /dev/null +++ b/Timeline/Timeline.csproj @@ -0,0 +1,60 @@ +<Project Sdk="Microsoft.NET.Sdk.Web"> + + <PropertyGroup> + <TargetFramework>netcoreapp2.2</TargetFramework> + <TypeScriptCompileBlocked>true</TypeScriptCompileBlocked> + <TypeScriptToolsVersion>Latest</TypeScriptToolsVersion> + <IsPackable>false</IsPackable> + <SpaRoot>ClientApp\</SpaRoot> + <DefaultItemExcludes>$(DefaultItemExcludes);$(SpaRoot)node_modules\**</DefaultItemExcludes> + + <!-- Set this to true if you enable server-side prerendering --> + <BuildServerSideRenderer>false</BuildServerSideRenderer> + <UserSecretsId>1f6fb74d-4277-4bc0-aeea-b1fc5ffb0b43</UserSecretsId> + </PropertyGroup> + + <ItemGroup> + <PackageReference Include="Microsoft.AspNetCore.App" /> + <PackageReference Include="Microsoft.AspNetCore.Razor.Design" Version="2.2.0" PrivateAssets="All" /> + <PackageReference Include="Microsoft.VisualStudio.Web.CodeGeneration.Design" Version="2.2.1" /> + </ItemGroup> + + <ItemGroup> + <!-- Don't publish the SPA source files, but do show them in the project files list --> + <Content Remove="$(SpaRoot)**" /> + <None Remove="$(SpaRoot)**" /> + <None Include="$(SpaRoot)**" Exclude="$(SpaRoot)node_modules\**" /> + </ItemGroup> + + <ItemGroup> + <Folder Include="bin\" /> + </ItemGroup> + + <Target Name="DebugEnsureNodeEnv" BeforeTargets="Build" Condition=" '$(Configuration)' == 'Debug' And !Exists('$(SpaRoot)node_modules') "> + <!-- Ensure Node.js is installed --> + <Exec Command="node --version" ContinueOnError="true"> + <Output TaskParameter="ExitCode" PropertyName="ErrorCode" /> + </Exec> + <Error Condition="'$(ErrorCode)' != '0'" Text="Node.js is required to build and run this project. To continue, please install Node.js from https://nodejs.org/, and then restart your command prompt or IDE." /> + <Message Importance="high" Text="Restoring dependencies using 'npm'. This may take several minutes..." /> + <Exec WorkingDirectory="$(SpaRoot)" Command="npm install" /> + </Target> + + <Target Name="PublishRunWebpack" AfterTargets="ComputeFilesToPublish"> + <!-- As part of publishing, ensure the JS resources are freshly built in production mode --> + <Exec WorkingDirectory="$(SpaRoot)" Command="yarn install" /> + <Exec WorkingDirectory="$(SpaRoot)" Command="yarn run build --prod" /> + <Exec WorkingDirectory="$(SpaRoot)" Command="yarn run build:ssr --prod" Condition=" '$(BuildServerSideRenderer)' == 'true' " /> + + <!-- Include the newly-built files in the publish output --> + <ItemGroup> + <DistFiles Include="$(SpaRoot)dist\**; $(SpaRoot)dist-server\**" /> + <DistFiles Include="$(SpaRoot)node_modules\**" Condition="'$(BuildServerSideRenderer)' == 'true'" /> + <ResolvedFileToPublish Include="@(DistFiles->'%(FullPath)')" Exclude="@(ResolvedFileToPublish)"> + <RelativePath>%(DistFiles.Identity)</RelativePath> + <CopyToPublishDirectory>PreserveNewest</CopyToPublishDirectory> + </ResolvedFileToPublish> + </ItemGroup> + </Target> + +</Project> |