-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathLifespark.Genetics.csproj
33 lines (30 loc) · 1.28 KB
/
Lifespark.Genetics.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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Library</OutputType>
<TargetFramework>net6.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
<Title>Bifrost Genetics Library</Title>
<Company>Bifrost Inc.</Company>
<Description>A biomimetic genetic encoder capable of encoding English or Latin text in to genetic code</Description>
<Copyright>Copyright Bifrost Inc. 2023</Copyright>
<PackageProjectUrl>https://github.com/Bifrost-Technologies/Bifrost.Genetics</PackageProjectUrl>
<PackageIcon>bifrost-lifespark.png</PackageIcon>
<PackageReadmeFile>README.md</PackageReadmeFile>
<RepositoryUrl>https://github.com/Bifrost-Technologies/Bifrost.Genetics</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageTags>bifrost; genetics; dna; rna; genome; encoder; english; genecode; biomimetic;</PackageTags>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
</PropertyGroup>
<ItemGroup>
<None Update="bifrost-lifespark.png">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
<None Update="README.md">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
</ItemGroup>
</Project>