-
Notifications
You must be signed in to change notification settings - Fork 57
Expand file tree
/
Copy pathTimeWarp.State.Plus.csproj
More file actions
50 lines (43 loc) · 1.95 KB
/
Copy pathTimeWarp.State.Plus.csproj
File metadata and controls
50 lines (43 loc) · 1.95 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
41
42
43
44
45
46
47
48
49
50
<Project Sdk="Microsoft.NET.Sdk.Razor">
<PropertyGroup>
<Title>TimeWarp.State.Plus</Title>
<Description>TimeWarp.State.Plus extends TimeWarp.State with additional, features, middleware and components to simplify and enhance your Blazor applications.</Description>
<PackageId>TimeWarp.State.Plus</PackageId>
<PackageTags>TimeWarp-State; TimeWarpState; BlazorState; Blazor; State; Blazor-State; TimeWarp.Mediator; Mediator; Pipeline; Middleware; Redux; Flux; Features; Plus</PackageTags>
<Nullable>enable</Nullable>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
</PropertyGroup>
<ItemGroup>
<SupportedPlatform Include="browser" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.AspNetCore.Components.Web" />
<PackageReference Include="Blazored.SessionStorage"/>
<PackageReference Include="Blazored.LocalStorage"/>
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\TimeWarp.State\TimeWarp.State.csproj"/>
<ProjectReference Include="..\TimeWarp.State.SourceGenerator\TimeWarp.State.SourceGenerator.csproj" OutputItemType="Analyzer" ReferenceOutputAssembly="false"/>
<ProjectReference Include="..\TimeWarp.State.Analyzer\TimeWarp.State.Analyzer.csproj" OutputItemType="Analyzer" ReferenceOutputAssembly="false"/>
</ItemGroup>
<ItemGroup>
<InternalsVisibleTo Include="TimeWarp.State.Plus.Tests"/>
</ItemGroup>
<ItemGroup>
<None Include=".\README.md">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
<None Include="..\..\Assets\Logo.png" Pack="true" PackagePath=""/>
</ItemGroup>
<Target Name="CopyPackage" AfterTargets="Pack">
<ItemGroup>
<PackageFiles Include="$(ProjectDir)bin\$(Configuration)\$(PackageId).*.nupkg"/>
</ItemGroup>
<MakeDir Directories="$(ProjectDir)..\..\LocalNugetFeed\"/>
<Copy
SourceFiles="@(PackageFiles)"
DestinationFolder="$(ProjectDir)..\..\LocalNugetFeed\"
/>
</Target>
</Project>