Skip to content

Commit

Permalink
Use msbuild git version instead of core
Browse files Browse the repository at this point in the history
  • Loading branch information
sean-mcl committed Mar 24, 2021
1 parent db7339f commit c5bada7
Showing 1 changed file with 40 additions and 37 deletions.
77 changes: 40 additions & 37 deletions Plotly.Blazor/Plotly.Blazor.csproj
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>

0 comments on commit c5bada7

Please sign in to comment.