-
Notifications
You must be signed in to change notification settings - Fork 52
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Use msbuild git version instead of core
- Loading branch information
Showing
1 changed file
with
40 additions
and
37 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,46 +1,49 @@ | ||
<Project Sdk="Microsoft.NET.Sdk.Razor"> | ||
<PropertyGroup> | ||
<TargetFramework>net5.0</TargetFramework> | ||
<RazorLangVersion>3.0</RazorLangVersion> | ||
<Authors>sean-laytec</Authors> | ||
<Company>LayTec-AG</Company> | ||
<RepositoryUrl>https://github.com/LayTec-AG/Plotly.Blazor.git</RepositoryUrl> | ||
<RepositoryType>git</RepositoryType> | ||
<PackageTags>blazor plotly charting-library</PackageTags> | ||
<PackageProjectUrl>https://github.com/LayTec-AG/Plotly.Blazor</PackageProjectUrl> | ||
<Description> | ||
Plotly.Blazor is a wrapper for plotly.js. | ||
Built on top of d3.js and stack.gl, plotly.js is a high-level, declarative charting library. It ships with over 40 chart types, including 3D charts, statistical graphs, and SVG maps. | ||
plotly.js is free and open source and you can view the source, report issues or contribute on GitHub. | ||
</Description> | ||
<EnableNETAnalyzers>false</EnableNETAnalyzers> | ||
</PropertyGroup> | ||
<PropertyGroup> | ||
<TargetFramework>net5.0</TargetFramework> | ||
<RazorLangVersion>3.0</RazorLangVersion> | ||
<Authors>sean-laytec</Authors> | ||
<Company>LayTec-AG</Company> | ||
<RepositoryUrl>https://github.com/LayTec-AG/Plotly.Blazor.git</RepositoryUrl> | ||
<RepositoryType>git</RepositoryType> | ||
<PackageTags>blazor plotly charting-library</PackageTags> | ||
<PackageProjectUrl>https://github.com/LayTec-AG/Plotly.Blazor</PackageProjectUrl> | ||
<Description> | ||
Plotly.Blazor is a wrapper for plotly.js. | ||
Built on top of d3.js and stack.gl, plotly.js is a high-level, declarative charting library. It ships with over 40 chart types, including 3D charts, statistical graphs, and SVG maps. | ||
plotly.js is free and open source and you can view the source, report issues or contribute on GitHub. | ||
</Description> | ||
<EnableNETAnalyzers>false</EnableNETAnalyzers> | ||
</PropertyGroup> | ||
|
||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'"> | ||
<DocumentationFile>Plotly.Blazor.xml</DocumentationFile> | ||
</PropertyGroup> | ||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'"> | ||
<DocumentationFile>Plotly.Blazor.xml</DocumentationFile> | ||
</PropertyGroup> | ||
|
||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'"> | ||
<DocumentationFile>Plotly.Blazor.xml</DocumentationFile> | ||
</PropertyGroup> | ||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'"> | ||
<DocumentationFile>Plotly.Blazor.xml</DocumentationFile> | ||
</PropertyGroup> | ||
|
||
|
||
<ItemGroup> | ||
<PackageReference Include="GitVersion.Core" Version="5.6.6" /> | ||
<PackageReference Include="Microsoft.AspNetCore.Components" Version="5.0.4" /> | ||
<PackageReference Include="Microsoft.AspNetCore.Components.Web" Version="5.0.4" /> | ||
<PackageReference Include="Microsoft.CSharp" Version="4.7.0" /> | ||
<PackageReference Include="System.Text.Json" Version="5.0.1" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<PackageReference Include="GitVersion.MsBuild" Version="5.6.6"> | ||
<PrivateAssets>all</PrivateAssets> | ||
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> | ||
</PackageReference> | ||
<PackageReference Include="Microsoft.AspNetCore.Components" Version="5.0.4" /> | ||
<PackageReference Include="Microsoft.AspNetCore.Components.Web" Version="5.0.4" /> | ||
<PackageReference Include="Microsoft.CSharp" Version="4.7.0" /> | ||
<PackageReference Include="System.Text.Json" Version="5.0.1" /> | ||
</ItemGroup> | ||
|
||
|
||
<ItemGroup> | ||
<Content Update="wwwroot\plotly-interop.js"> | ||
<CopyToOutputDirectory>Always</CopyToOutputDirectory> | ||
</Content> | ||
<Content Update="wwwroot\plotly-latest.min.js"> | ||
<CopyToOutputDirectory>Always</CopyToOutputDirectory> | ||
</Content> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<Content Update="wwwroot\plotly-interop.js"> | ||
<CopyToOutputDirectory>Always</CopyToOutputDirectory> | ||
</Content> | ||
<Content Update="wwwroot\plotly-latest.min.js"> | ||
<CopyToOutputDirectory>Always</CopyToOutputDirectory> | ||
</Content> | ||
</ItemGroup> | ||
|
||
</Project> |