Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ namespace Ljbc1994.Blazor.IntersectionObserver
{
public class IntersectionObserverService: IIntersectionObserverService, IAsyncDisposable
{
private readonly string scriptPath = "_content/BlazorIntersectionObserver/blazor-intersection-observer.min.js";
private readonly string scriptPath = "_content/inmydata.BlazorIntersectionObserver/blazor-intersection-observer.min.js";

private readonly Task<IJSObjectReference> moduleTask;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
</PropertyGroup>

<PropertyGroup>
<PackageId>BlazorIntersectionObserver</PackageId>
<PackageId>inmydata.BlazorIntersectionObserver</PackageId>
<TargetFramework>net5.0</TargetFramework>
<LangVersion>8.0</LangVersion>
<RazorLangVersion>3.0</RazorLangVersion>
Expand All @@ -16,10 +16,11 @@
<Title>Blazor Intersection Observer</Title>
<Description>Intersection Observer API for Blazor applications</Description>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<Version>3.1.0</Version>
<Version>3.1.0.2</Version>
<Product>BlazorIntersectionObserver</Product>
<PackageReadmeFile>README.md</PackageReadmeFile>
<PackageReleaseNotes>
<PackageReleaseNotes>3.1.0.1 - Null checks in JS

3.1.0
- Use the navigation manager for importing intersection observer script

Expand Down Expand Up @@ -108,6 +109,6 @@ namespace conflicts with Blazor libraries.
<None Include="Properties\launchSettings.json" />
<None Include="tsconfig.json">
</None>
<None Include="..\..\README.md" Pack="true" PackagePath="\"/>
<None Include="..\..\README.md" Pack="true" PackagePath="\" />
</ItemGroup>
</Project>
7 changes: 7 additions & 0 deletions src/Ljbc1994.Blazor.IntersectionObserver/nuget.config
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<packageSources>
<clear />
<add key="inmydata_development" value="https://datapa.pkgs.visualstudio.com/_packaging/inmydata_development/nuget/v3/index.json" />
</packageSources>
</configuration>
Loading