-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathRustify.csproj
More file actions
26 lines (21 loc) · 780 Bytes
/
Rustify.csproj
File metadata and controls
26 lines (21 loc) · 780 Bytes
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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<PackageId>Rustify</PackageId>
<Version>0.4.0</Version>
<Authors>loldruger</Authors>
<Company>archetect.ai</Company>
<Description>Rustify Your C# Project!</Description>
<RepositoryUrl>https://github.com/loldruger/Rustify</RepositoryUrl>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<PackageReadmeFile>README.md</PackageReadmeFile>
<TargetFrameworks>net8.0;net9.0;net10.0</TargetFrameworks>
<Nullable>enable</Nullable>
</PropertyGroup>
<ItemGroup>
<None Include="README.md" Pack="true" PackagePath="\"/>
</ItemGroup>
<ItemGroup>
<Compile Remove="tests\\**\\*.cs" />
</ItemGroup>
</Project>