-
-
Notifications
You must be signed in to change notification settings - Fork 35
/
Copy pathVxFormGenerator.Components.Plain.csproj
38 lines (35 loc) · 1.41 KB
/
VxFormGenerator.Components.Plain.csproj
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
<Project Sdk="Microsoft.NET.Sdk.Razor">
<PropertyGroup>
<TargetFramework>net5.0</TargetFramework>
<Version>0.4.0</Version>
<Authors>Alex Knijf</Authors>
<Company>Codershop</Company>
<Description>The unstyled version of the input components for the VxFormGenerator</Description>
<PackageLicenseFile>LICENSE.txt</PackageLicenseFile>
<PackageProjectUrl>https://github.com/Aaltuj/VxFormGenerator</PackageProjectUrl>
<PackageTags>Form generator, Blazor, POCO</PackageTags>
<RepositoryUrl>https://github.com/Aaltuj/VxFormGenerator</RepositoryUrl>
<RepositoryType>GIT</RepositoryType>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<PackageId>VxFormGenerator.Components.Plain</PackageId>
<Product>VxFormGenerator.Components.Plain</Product>
<Copyright>Alex Knijf</Copyright>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.AspNetCore.Components" Version="5.0.0" />
<PackageReference Include="Microsoft.AspNetCore.Components.Web" Version="5.0.0" />
</ItemGroup>
<ItemGroup>
<None Include="..\VxFormGenerator.Core\README.md">
<Pack>True</Pack>
<PackagePath></PackagePath>
</None>
<Content Include="..\LICENSE.txt"
Link="LICENSE.txt"
Pack="true"
PackagePath="LICENSE.txt"/>
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\VxFormGenerator.Core\VxFormGenerator.Core.csproj" />
</ItemGroup>
</Project>