-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathMultiSourcePlayList.csproj
More file actions
executable file
·40 lines (35 loc) · 1.51 KB
/
MultiSourcePlayList.csproj
File metadata and controls
executable file
·40 lines (35 loc) · 1.51 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
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>netcoreapp2.0</TargetFramework>
<PreserveCompilationContext>true</PreserveCompilationContext>
<AssemblyName>MultiSourcePlayList</AssemblyName>
<OutputType>Exe</OutputType>
<PackageId>MultiSourcePlayList</PackageId>
<RuntimeFrameworkVersion>2.0.3</RuntimeFrameworkVersion>
<AssetTargetFallback>$(AssetTargetFallback);portable-net45+win8+wp8+wpa81;</AssetTargetFallback>
<UserSecretsId>SecretId20170522</UserSecretsId>
</PropertyGroup>
<ItemGroup>
<Compile Remove="node_modules\**\*" />
<None Update="wwwroot\**\*">
<CopyToPublishDirectory>PreserveNewest</CopyToPublishDirectory>
</None>
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.AspNetCore.All" Version="2.0.3" />
<PackageReference Include="System.Net.Http" Version="4.3.2" />
<PackageReference Include="WindowsAzure.Storage" Version="8.1.4" />
<PackageReference Include="System.IO.FileSystem" Version="4.3.0" />
<PackageReference Include="TagLib.Portable" Version="1.2.0-pre" />
</ItemGroup>
<Target Name="PrepublishScript" BeforeTargets="PrepareForPublish">
<Exec Command="npm install" />
<Exec Command="npm run build" />
</Target>
<PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
<DefineConstants>$(DefineConstants);RELEASE</DefineConstants>
</PropertyGroup>
<ItemGroup>
<DotNetCliToolReference Include="BundlerMinifier.Core" Version="2.2.301" />
</ItemGroup>
</Project>