Created
August 22, 2017 09:27
-
-
Save soen/2fd3b24a556413a43e5b665f5d930956 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<Project Sdk="Microsoft.NET.Sdk.Web"> | |
<PropertyGroup> | |
<TargetFramework>netcoreapp1.1</TargetFramework> | |
<ApplicationInsightsResourceId>/subscriptions/d0f630d1-e1d3-48fd-9a10-866fdc993495/resourcegroups/TEST-Minetilbud/providers/microsoft.insights/components/test-minetilbud-CloudAPI</ApplicationInsightsResourceId> | |
<ApplicationInsightsAnnotationResourceId>/subscriptions/d0f630d1-e1d3-48fd-9a10-866fdc993495/resourceGroups/TEST-Minetilbud/providers/microsoft.insights/components/test-minetilbud-CloudAPI</ApplicationInsightsAnnotationResourceId> | |
<PackageTargetFallback>portable-net45+win8</PackageTargetFallback> | |
</PropertyGroup> | |
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'"> | |
<DocumentationFile>bin\Debug\netcoreapp1.1\API.xml</DocumentationFile> | |
</PropertyGroup> | |
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'"> | |
<DocumentationFile>bin\Release\netcoreapp1.1\API.xml</DocumentationFile> | |
</PropertyGroup> | |
<ItemGroup> | |
<Folder Include="wwwroot\" /> | |
</ItemGroup> | |
<Target Name="PrepublishScript" BeforeTargets="PrepareForPublish"> | |
<ItemGroup> | |
<DocFile Include="bin\$(Configuration)\$(TargetFramework)\$(RuntimeIdentifier)\*.xml" /> | |
</ItemGroup> | |
<Copy SourceFiles="@(DocFile)" DestinationFolder="$(PublishDir)" SkipUnchangedFiles="false" /> | |
</Target> | |
<ItemGroup> | |
<PackageReference Include="AutoMapper" Version="6.1.1" /> | |
<PackageReference Include="AutoMapper.Extensions.Microsoft.DependencyInjection" Version="2.0.1" /> | |
<PackageReference Include="Microsoft.ApplicationInsights.AspNetCore" Version="2.1.0" /> | |
<PackageReference Include="Microsoft.AspNetCore" Version="1.1.2" /> | |
<PackageReference Include="Microsoft.AspNetCore.Mvc" Version="1.1.3" /> | |
<PackageReference Include="Microsoft.AspNetCore.StaticFiles" Version="1.1.2" /> | |
<PackageReference Include="Microsoft.Azure.Search" Version="3.0.4" /> | |
<PackageReference Include="Microsoft.Extensions.CommandLineUtils" Version="1.1.1" /> | |
<PackageReference Include="Microsoft.Extensions.Configuration.CommandLine" Version="1.1.2" /> | |
<PackageReference Include="Microsoft.Extensions.Logging.Debug" Version="1.1.2" /> | |
<PackageReference Include="Newtonsoft.Json" Version="10.0.3" /> | |
<PackageReference Include="Swashbuckle.AspNetCore" Version="1.0.0" /> | |
</ItemGroup> | |
<ItemGroup> | |
<DotNetCliToolReference Include="Microsoft.VisualStudio.Web.CodeGeneration.Tools" Version="1.0.0" /> | |
</ItemGroup> | |
<ItemGroup> | |
<None Include="../Scripts/**/*" CopyToPublishDirectory="Always" /> | |
</ItemGroup> | |
<ItemGroup> | |
<ProjectReference Include="..\something.csproj" /> | |
</ItemGroup> | |
<ItemGroup> | |
<WCFMetadata Include="Connected Services" /> | |
</ItemGroup> | |
</Project> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment