-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCloudIP.fsproj
35 lines (29 loc) · 1.13 KB
/
CloudIP.fsproj
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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<!--TargetFrameworks>net48;net8.0</TargetFrameworks-->
<TargetFrameworks>netstandard2.0;netstandard2.1</TargetFrameworks>
<PackageId>CloudIP</PackageId>
<AssemblyName>CloudIP</AssemblyName>
<Version>1.0.9</Version>
<Authors>Tuomas</Authors>
<Company>Fund Ourselves</Company>
<PackageTags>ip address checker cloud provider cidr routing table map known service</PackageTags>
<Description>
Checks if an IP is within a known IP-address range of a cloud provider.
</Description>
<RepositoryUrl>https://github.com/Thorium/CloudIP.git</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageLicenseExpression>Unlicense</PackageLicenseExpression>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<OutputType>Library</OutputType>
</PropertyGroup>
<ItemGroup>
<Compile Include="CloudIP.fs" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="FSharp.Data" Version="6.4.1" />
</ItemGroup>
<ItemGroup>
<PackageReference Update="FSharp.Core" Version="9.0.100" />
</ItemGroup>
</Project>