-
Notifications
You must be signed in to change notification settings - Fork 23
/
DynamoVisualProgramming.Librariejs.csproj
42 lines (42 loc) · 1.64 KB
/
DynamoVisualProgramming.Librariejs.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
39
40
41
42
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<Description>Reusable lightweight library component based on React.js</Description>
<Authors>Autodesk</Authors>
<Copyright>Copyright Autodesk 2019</Copyright>
<PackageProjectUrl>https://github.com/DynamoDS/librarie.js</PackageProjectUrl>
<PackageLicenseFile>LICENSE</PackageLicenseFile>
<RepositoryUrl>https://github.com/DynamoDS/librarie.js.git</RepositoryUrl>
<PackageTags>Dynamo;librariejs</PackageTags>
<NeutralLanguage>en-US</NeutralLanguage>
<versionprefix>1.0.0</versionprefix>
<PackProjectInputFile>$(MSBuildProjectFullPath)</PackProjectInputFile>
<NoBuild>true</NoBuild>
<IncludeBuildOutput>false</IncludeBuildOutput>
<TargetFrameworks>net47</TargetFrameworks>
<DisableImplicitFrameworkReferences>true</DisableImplicitFrameworkReferences>
</PropertyGroup>
<PropertyGroup>
<ExcludeFromPackage>
_mocks_/**/*;
_tests_/**/*;
docs/**/*;
node_modules/**/*;
src/**/*;
dist/librarie.js;
dist/librarie.js.map;
dist/librarie.min.js.map;
</ExcludeFromPackage>
</PropertyGroup>
<PropertyGroup>
<RuntimeIdentifier>win10-x64</RuntimeIdentifier>
</PropertyGroup>
<ItemGroup Condition=" '$(TargetFramework)' == 'net47' ">
<PackageReference Include="Microsoft.NETFramework.ReferenceAssemblies" Version="1.0.2" PrivateAssets="All" />
</ItemGroup>
<ItemGroup>
<Content Include="dist/**/*" Exclude="$(ExcludeFromPackage)" >
<PackagePath>\</PackagePath>
</Content>
<None Include="LICENSE" Pack="true" Visible="false" PackagePath=""/>
</ItemGroup>
</Project>