Skip to content

Commit 580c3e9

Browse files
committed
Initial release
1 parent d81529e commit 580c3e9

File tree

4 files changed

+33
-6
lines changed

4 files changed

+33
-6
lines changed

AssetRipper.NativeDialogs.Example/AssetRipper.NativeDialogs.Example.csproj

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,6 @@
22

33
<PropertyGroup>
44
<OutputType>Exe</OutputType>
5-
<TargetFramework>net9.0</TargetFramework>
6-
<ImplicitUsings>enable</ImplicitUsings>
7-
<Nullable>enable</Nullable>
85
<PublishAot>true</PublishAot>
96
<InvariantGlobalization>true</InvariantGlobalization>
107
</PropertyGroup>

AssetRipper.NativeDialogs.sln

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution
1212
.editorconfig = .editorconfig
1313
.gitignore = .gitignore
1414
.github\dependabot.yml = .github\dependabot.yml
15+
Directory.Build.props = Directory.Build.props
1516
LICENSE = LICENSE
1617
.github\workflows\publish.yml = .github\workflows\publish.yml
1718
README.md = README.md
Lines changed: 12 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,24 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<TargetFramework>net9.0</TargetFramework>
5-
<ImplicitUsings>enable</ImplicitUsings>
6-
<Nullable>enable</Nullable>
74
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
5+
6+
<PackageId>AssetRipper.NativeDialogs</PackageId>
7+
<PackageTags>C# file</PackageTags>
8+
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
9+
<PackageReadmeFile>README.md</PackageReadmeFile>
10+
11+
<GenerateDocumentationFile>true</GenerateDocumentationFile>
12+
<NoWarn>1591</NoWarn>
813
</PropertyGroup>
914

1015
<ItemGroup>
1116
<PackageReference Include="GtkSharp" Version="3.24.24.117-develop" />
1217
<PackageReference Include="TerraFX.Interop.Windows" Version="10.0.26100.2" />
1318
</ItemGroup>
1419

20+
<ItemGroup>
21+
<None Include="../README.md" Pack="true" PackagePath="\" />
22+
</ItemGroup>
23+
1524
</Project>

Directory.Build.props

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
<Project>
2+
<PropertyGroup>
3+
<TargetFramework>net9.0</TargetFramework>
4+
<ImplicitUsings>enable</ImplicitUsings>
5+
<LangVersion>Latest</LangVersion>
6+
<Nullable>enable</Nullable>
7+
<CheckForOverflowUnderflow>true</CheckForOverflowUnderflow>
8+
9+
<VersionPrefix>1.0.0</VersionPrefix>
10+
<Copyright>Copyright (c) 2025 ds5678</Copyright>
11+
<Authors>ds5678</Authors>
12+
<Company>AssetRipper</Company>
13+
<Description>Cross platform library for native file dialogs.</Description>
14+
15+
<PackageLicenseExpression>MIT</PackageLicenseExpression>
16+
<RepositoryType>git</RepositoryType>
17+
<RepositoryUrl>https://github.com/AssetRipper/AssetRipper.NativeDialogs</RepositoryUrl>
18+
<PackageProjectUrl>$(RepositoryUrl)</PackageProjectUrl>
19+
</PropertyGroup>
20+
</Project>

0 commit comments

Comments
 (0)