Added requirements doc
This commit is contained in:
parent
0a0dc6cd28
commit
5611a2f693
13
.idea/.idea.SessionZero.dir/.idea/.gitignore
vendored
Normal file
13
.idea/.idea.SessionZero.dir/.idea/.gitignore
vendored
Normal file
@ -0,0 +1,13 @@
|
||||
# Default ignored files
|
||||
/shelf/
|
||||
/workspace.xml
|
||||
# Rider ignored files
|
||||
/.idea.SessionZero.iml
|
||||
/projectSettingsUpdater.xml
|
||||
/contentModel.xml
|
||||
/modules.xml
|
||||
# Editor-based HTTP Client requests
|
||||
/httpRequests/
|
||||
# Datasource local storage ignored files
|
||||
/dataSources/
|
||||
/dataSources.local.xml
|
8
.idea/.idea.SessionZero.dir/.idea/indexLayout.xml
Normal file
8
.idea/.idea.SessionZero.dir/.idea/indexLayout.xml
Normal file
@ -0,0 +1,8 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<project version="4">
|
||||
<component name="UserContentModel">
|
||||
<attachedFolders />
|
||||
<explicitIncludes />
|
||||
<explicitExcludes />
|
||||
</component>
|
||||
</project>
|
6
.idea/.idea.SessionZero.dir/.idea/vcs.xml
Normal file
6
.idea/.idea.SessionZero.dir/.idea/vcs.xml
Normal file
@ -0,0 +1,6 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<project version="4">
|
||||
<component name="VcsDirectoryMappings">
|
||||
<mapping directory="" vcs="Git" />
|
||||
</component>
|
||||
</project>
|
110
DesignDoc.md
110
DesignDoc.md
@ -1,110 +0,0 @@
|
||||
# Virtual Tabletop Application Design Document
|
||||
|
||||
## 1. Project Overview
|
||||
|
||||
### 1.1 Vision
|
||||
A lightweight, flexible Virtual Tabletop (VTT) application designed to simplify tabletop roleplaying game management, focusing on intuitive user experience and system-agnostic gameplay tools.
|
||||
|
||||
### 1.2 Project Goals
|
||||
- Provide a streamlined, user-friendly alternative to complex VTT platforms
|
||||
- Create a flexible tool that supports any tabletop roleplaying game system
|
||||
- Develop an open-source application with potential monetization strategies
|
||||
|
||||
## 2. Target Audience
|
||||
- Casual tabletop roleplaying game players
|
||||
- Game Masters seeking simplified game management tools
|
||||
- Roleplaying game groups looking for an intuitive virtual play experience
|
||||
|
||||
## 3. Technical Specifications
|
||||
|
||||
### 3.1 Platform Support
|
||||
- Primary Platforms: Windows, Linux
|
||||
- Future Consideration: macOS support
|
||||
|
||||
### 3.2 Development Environment
|
||||
- Primary Framework: Avalonia .NET MVVM
|
||||
- Internal Library: Cogwheel (development and debugging)
|
||||
- Development Team: Single developer
|
||||
|
||||
## 4. Feature Requirements
|
||||
|
||||
### 4.1 Core Features (Alpha Release)
|
||||
|
||||
#### 4.1.1 Character Management
|
||||
- Fully customizable character sheet creation
|
||||
- Ability to manually add custom attributes
|
||||
- Default D&D-style character sheet template
|
||||
- Shareable custom character sheet formats
|
||||
- Integrated inventory management
|
||||
- Player notes and additional documentation sections
|
||||
|
||||
#### 4.1.2 Game Master Tools
|
||||
- Party management system
|
||||
- NPC creation and tracking
|
||||
- Item management
|
||||
- Turn order tracking
|
||||
- Player sheet management and access control
|
||||
|
||||
#### 4.1.3 Optional Grid System (Nice to Have)
|
||||
- Tile-based world representation
|
||||
- Token placement for players, NPCs, and items
|
||||
- Real-time synchronization for all connected players
|
||||
|
||||
### 4.2 Future Considerations
|
||||
- Plugin support architecture
|
||||
- Community asset store for:
|
||||
- Custom artwork
|
||||
- Character sheets
|
||||
- Plugins
|
||||
- User-created content
|
||||
|
||||
## 5. User Experience Principles
|
||||
|
||||
### 5.1 Design Philosophy
|
||||
- Minimize complexity
|
||||
- Emulate the feel of a physical tabletop
|
||||
- Zero learning curve beyond the RPG system being played
|
||||
- Intuitive interface design
|
||||
|
||||
### 5.2 Accessibility Considerations
|
||||
- Multi-language support (future enhancement)
|
||||
- Simple, clean user interface
|
||||
|
||||
## 6. Monetization Strategy
|
||||
|
||||
### 6.1 Open-Source Commitment
|
||||
- Core application will remain fully open-source
|
||||
- Potential revenue streams:
|
||||
1. Optional premium hosting service
|
||||
2. Marketplace commission for community assets
|
||||
3. Donation/sponsorship model
|
||||
4. Paid advanced features (non-essential to core functionality)
|
||||
|
||||
## 7. Development Roadmap
|
||||
|
||||
### 7.1 Alpha Release Timeline
|
||||
- Target Completion: November 2025
|
||||
- Focus: Core character and game management functionality
|
||||
- Minimal viable product (MVP) approach
|
||||
|
||||
### 7.2 Potential Future Phases
|
||||
- Grid system implementation
|
||||
- Plugin support
|
||||
- Asset marketplace
|
||||
- Enhanced platform support
|
||||
|
||||
## 8. Technical Constraints
|
||||
- Self-hostable backend
|
||||
- No dependency on specific RPG system royalties
|
||||
- Lightweight and performant design
|
||||
|
||||
## 9. Risk Mitigation
|
||||
- Modular architecture to support future expansions
|
||||
- Flexible character sheet system
|
||||
- Community-driven development model
|
||||
|
||||
## 10. Success Metrics
|
||||
- User adoption rate
|
||||
- Community contribution
|
||||
- Ease of use feedback
|
||||
- Performance and stability
|
181
Requirements and Specifications.md
Normal file
181
Requirements and Specifications.md
Normal file
@ -0,0 +1,181 @@
|
||||
# Virtual Tabletop Application Requirements Specification
|
||||
|
||||
## 1. Executive Summary
|
||||
|
||||
### 1.1 Vision
|
||||
A lightweight, flexible Virtual Tabletop (VTT) application that simplifies virtual tabletop roleplaying game management through an intuitive, game system-agnostic platform.
|
||||
|
||||
### 1.2 Project Objectives
|
||||
- Develop a user-friendly VTT alternative to complex existing platforms
|
||||
- Create a versatile tool supporting multiple roleplaying game systems through a more hands on, agnostic, and manual approach to game rules
|
||||
- Establish an open-source application with sustainable monetization potential
|
||||
|
||||
## 2. Market and Audience
|
||||
|
||||
### 2.1 Target Users
|
||||
- Casual tabletop RPG players
|
||||
- Game Masters seeking streamlined management tools
|
||||
- Role-playing groups desiring an intuitive and simple virtual play experience
|
||||
|
||||
## 3. Technical Architecture
|
||||
|
||||
### 3.1 Platform Support
|
||||
- Primary Platforms: Windows, Linux
|
||||
- Future Expansion: macOS support
|
||||
|
||||
### 3.2 Development Environment
|
||||
- Framework: Avalonia .NET MVVM
|
||||
- Internal Development Library: Bellsworne.CogwheelLib
|
||||
- Development Model: Single-developer project
|
||||
|
||||
## 4. Feature Requirements
|
||||
|
||||
### 4.1 Core Functionality (Alpha Release)
|
||||
|
||||
#### 4.1.1 Character Management
|
||||
- Fully customizable character sheet creation
|
||||
- Flexible custom attribute system
|
||||
- Ability to add, modify, and remove attributes
|
||||
- Support for various RPG system structures due to nature of manual creation
|
||||
- Character Sheet Templates
|
||||
- Default D&D-style character sheet template
|
||||
- Customizable template creation and editing
|
||||
- Shareable custom character sheet formats
|
||||
- Comprehensive Character Details
|
||||
- Integrated inventory management system
|
||||
- Detailed player notes and documentation sections
|
||||
- Attribute tracking and modification
|
||||
- Background and character history storage
|
||||
|
||||
#### 4.1.2 Game Session Management (Normal User)
|
||||
- Session Creation and Configuration
|
||||
- Create new game sessions
|
||||
- Customize character sheet templates for the session
|
||||
- Invite players via unique session links or codes
|
||||
- Session Management Tools
|
||||
- Player role assignment (Game Master, Player)
|
||||
- Access control and permissions
|
||||
- Session settings and configuration
|
||||
|
||||
#### 4.1.3 Game Master Session Capabilities
|
||||
- Player Management
|
||||
- View and edit player character sheets
|
||||
- Manage player inventories
|
||||
- Add and track player status effects
|
||||
- Create private GM notes for players
|
||||
- NPC Management
|
||||
- Create and maintain NPC databases
|
||||
- Detailed NPC character sheets
|
||||
- NPC tracking and manipulation
|
||||
- Item Management
|
||||
- Comprehensive item database
|
||||
- Create, edit, and distribute items
|
||||
- Track item locations and distributions
|
||||
- Game Session Tools
|
||||
- Turn order tracking
|
||||
- Dynamic attribute manipulation
|
||||
- Party management system
|
||||
- Session-wide status tracking
|
||||
- Communication
|
||||
- In-game chat management
|
||||
- Private messaging capabilities
|
||||
|
||||
#### 4.1.4 Player Session Capabilities
|
||||
- Character Sheet Interaction
|
||||
- Real-time character sheet management
|
||||
- View and update personal character details
|
||||
- Inventory management
|
||||
- Communication
|
||||
- In-game chat participation
|
||||
- View other players' status (limited by GM permissions)
|
||||
- Basic interaction tools
|
||||
|
||||
### 4.2 Future Considerations (FC)
|
||||
|
||||
#### 4.2.1 Grid and Token System
|
||||
- Visual Game World Representation
|
||||
- Tile-based world mapping
|
||||
- Token creation and management
|
||||
- Visual representation of characters, NPCs, and items
|
||||
- Real-time token movement and interaction
|
||||
|
||||
#### 4.2.2 Marketplace Features
|
||||
- Plugin Marketplace
|
||||
- Community-developed plugins
|
||||
- Verified and user-rated plugins
|
||||
- Easy installation and management
|
||||
- Asset Marketplace
|
||||
- Character sheet templates
|
||||
- Token artwork packs
|
||||
- Item database expansions
|
||||
- NPC/Monster database collections
|
||||
- Monetization and Sharing
|
||||
- Free and premium assets
|
||||
- Creator attribution and compensation model
|
||||
|
||||
#### 4.2.3 Advanced Plugin Support
|
||||
- Plugin Architecture
|
||||
- Standardized plugin development framework
|
||||
- API for deep application integration
|
||||
- Performance and security considerations
|
||||
- Plugin Types
|
||||
- Game system adaptors
|
||||
- Custom UI/UX enhancements
|
||||
- Advanced game management tools
|
||||
- Automation and dice rolling systems
|
||||
|
||||
### 4.3 Extensibility and Integration
|
||||
- Open API for third-party development
|
||||
- Potential integration with external RPG tools
|
||||
- Modular design to support future expansions
|
||||
## 5. User Experience Design
|
||||
|
||||
### 5.1 Design Principles
|
||||
- Minimize interface complexity
|
||||
- Emulate physical tabletop interaction
|
||||
- Achieve zero learning curve beyond game system
|
||||
- Prioritize intuitive interface design
|
||||
|
||||
### 5.2 Accessibility Considerations
|
||||
- Future multi-language support
|
||||
- Clean, minimalist user interface
|
||||
|
||||
## 6. Monetization Strategy
|
||||
|
||||
### 6.1 Open-Source Commitment
|
||||
- Core application remains fully open-source
|
||||
- Potential Revenue Streams:
|
||||
1. Premium hosting service
|
||||
2. Community asset marketplace commissions
|
||||
3. Donation and sponsorship model
|
||||
4. Optional advanced feature packages
|
||||
|
||||
## 7. Development Timeline
|
||||
|
||||
### 7.1 Alpha Release
|
||||
- Target Completion: November 2025
|
||||
- Focus: Essential character and game management functionality
|
||||
- Minimum Viable Product (MVP) approach
|
||||
|
||||
### 7.2 Potential Expansion Phases
|
||||
- Grid system implementation
|
||||
- Plugin ecosystem development
|
||||
- Asset marketplace creation
|
||||
- Extended platform support
|
||||
|
||||
## 8. Technical Constraints
|
||||
- Self-hostable backend infrastructure
|
||||
- System-agnostic design
|
||||
- No RPG system royalty dependencies
|
||||
- Lightweight, high-performance architecture
|
||||
|
||||
## 9. Risk Mitigation Strategies
|
||||
- Modular, extensible architecture
|
||||
- Flexible character sheet system
|
||||
- Community-driven development model
|
||||
|
||||
## 10. Success Evaluation Metrics
|
||||
- User adoption rates
|
||||
- Community engagement levels
|
||||
- Usability feedback
|
||||
- Performance and stability indicators
|
BIN
bin/Debug/net9.0/Avalonia.Base.dll
Executable file
BIN
bin/Debug/net9.0/Avalonia.Base.dll
Executable file
Binary file not shown.
BIN
bin/Debug/net9.0/Avalonia.Controls.ColorPicker.dll
Executable file
BIN
bin/Debug/net9.0/Avalonia.Controls.ColorPicker.dll
Executable file
Binary file not shown.
BIN
bin/Debug/net9.0/Avalonia.Controls.DataGrid.dll
Executable file
BIN
bin/Debug/net9.0/Avalonia.Controls.DataGrid.dll
Executable file
Binary file not shown.
BIN
bin/Debug/net9.0/Avalonia.Controls.dll
Executable file
BIN
bin/Debug/net9.0/Avalonia.Controls.dll
Executable file
Binary file not shown.
BIN
bin/Debug/net9.0/Avalonia.DesignerSupport.dll
Executable file
BIN
bin/Debug/net9.0/Avalonia.DesignerSupport.dll
Executable file
Binary file not shown.
BIN
bin/Debug/net9.0/Avalonia.Desktop.dll
Executable file
BIN
bin/Debug/net9.0/Avalonia.Desktop.dll
Executable file
Binary file not shown.
BIN
bin/Debug/net9.0/Avalonia.Diagnostics.dll
Executable file
BIN
bin/Debug/net9.0/Avalonia.Diagnostics.dll
Executable file
Binary file not shown.
BIN
bin/Debug/net9.0/Avalonia.Dialogs.dll
Executable file
BIN
bin/Debug/net9.0/Avalonia.Dialogs.dll
Executable file
Binary file not shown.
BIN
bin/Debug/net9.0/Avalonia.Fonts.Inter.dll
Executable file
BIN
bin/Debug/net9.0/Avalonia.Fonts.Inter.dll
Executable file
Binary file not shown.
BIN
bin/Debug/net9.0/Avalonia.FreeDesktop.dll
Executable file
BIN
bin/Debug/net9.0/Avalonia.FreeDesktop.dll
Executable file
Binary file not shown.
BIN
bin/Debug/net9.0/Avalonia.Markup.Xaml.dll
Executable file
BIN
bin/Debug/net9.0/Avalonia.Markup.Xaml.dll
Executable file
Binary file not shown.
BIN
bin/Debug/net9.0/Avalonia.Markup.dll
Executable file
BIN
bin/Debug/net9.0/Avalonia.Markup.dll
Executable file
Binary file not shown.
BIN
bin/Debug/net9.0/Avalonia.Metal.dll
Executable file
BIN
bin/Debug/net9.0/Avalonia.Metal.dll
Executable file
Binary file not shown.
BIN
bin/Debug/net9.0/Avalonia.MicroCom.dll
Executable file
BIN
bin/Debug/net9.0/Avalonia.MicroCom.dll
Executable file
Binary file not shown.
BIN
bin/Debug/net9.0/Avalonia.Native.dll
Executable file
BIN
bin/Debug/net9.0/Avalonia.Native.dll
Executable file
Binary file not shown.
BIN
bin/Debug/net9.0/Avalonia.OpenGL.dll
Executable file
BIN
bin/Debug/net9.0/Avalonia.OpenGL.dll
Executable file
Binary file not shown.
BIN
bin/Debug/net9.0/Avalonia.Remote.Protocol.dll
Executable file
BIN
bin/Debug/net9.0/Avalonia.Remote.Protocol.dll
Executable file
Binary file not shown.
BIN
bin/Debug/net9.0/Avalonia.Skia.dll
Executable file
BIN
bin/Debug/net9.0/Avalonia.Skia.dll
Executable file
Binary file not shown.
BIN
bin/Debug/net9.0/Avalonia.Themes.Fluent.dll
Executable file
BIN
bin/Debug/net9.0/Avalonia.Themes.Fluent.dll
Executable file
Binary file not shown.
BIN
bin/Debug/net9.0/Avalonia.Themes.Simple.dll
Executable file
BIN
bin/Debug/net9.0/Avalonia.Themes.Simple.dll
Executable file
Binary file not shown.
BIN
bin/Debug/net9.0/Avalonia.Vulkan.dll
Executable file
BIN
bin/Debug/net9.0/Avalonia.Vulkan.dll
Executable file
Binary file not shown.
BIN
bin/Debug/net9.0/Avalonia.Win32.dll
Executable file
BIN
bin/Debug/net9.0/Avalonia.Win32.dll
Executable file
Binary file not shown.
BIN
bin/Debug/net9.0/Avalonia.X11.dll
Executable file
BIN
bin/Debug/net9.0/Avalonia.X11.dll
Executable file
Binary file not shown.
BIN
bin/Debug/net9.0/Avalonia.dll
Executable file
BIN
bin/Debug/net9.0/Avalonia.dll
Executable file
Binary file not shown.
BIN
bin/Debug/net9.0/CommunityToolkit.Mvvm.dll
Executable file
BIN
bin/Debug/net9.0/CommunityToolkit.Mvvm.dll
Executable file
Binary file not shown.
BIN
bin/Debug/net9.0/HarfBuzzSharp.dll
Executable file
BIN
bin/Debug/net9.0/HarfBuzzSharp.dll
Executable file
Binary file not shown.
BIN
bin/Debug/net9.0/MicroCom.Runtime.dll
Executable file
BIN
bin/Debug/net9.0/MicroCom.Runtime.dll
Executable file
Binary file not shown.
BIN
bin/Debug/net9.0/SessionZero
Executable file
BIN
bin/Debug/net9.0/SessionZero
Executable file
Binary file not shown.
644
bin/Debug/net9.0/SessionZero.deps.json
Normal file
644
bin/Debug/net9.0/SessionZero.deps.json
Normal file
@ -0,0 +1,644 @@
|
||||
{
|
||||
"runtimeTarget": {
|
||||
"name": ".NETCoreApp,Version=v9.0",
|
||||
"signature": ""
|
||||
},
|
||||
"compilationOptions": {},
|
||||
"targets": {
|
||||
".NETCoreApp,Version=v9.0": {
|
||||
"SessionZero/1.0.0": {
|
||||
"dependencies": {
|
||||
"Avalonia": "11.2.1",
|
||||
"Avalonia.Desktop": "11.2.1",
|
||||
"Avalonia.Diagnostics": "11.2.1",
|
||||
"Avalonia.Fonts.Inter": "11.2.1",
|
||||
"Avalonia.Themes.Fluent": "11.2.1",
|
||||
"CommunityToolkit.Mvvm": "8.2.1"
|
||||
},
|
||||
"runtime": {
|
||||
"SessionZero.dll": {}
|
||||
}
|
||||
},
|
||||
"Avalonia/11.2.1": {
|
||||
"dependencies": {
|
||||
"Avalonia.BuildServices": "0.0.29",
|
||||
"Avalonia.Remote.Protocol": "11.2.1",
|
||||
"MicroCom.Runtime": "0.11.0"
|
||||
},
|
||||
"runtime": {
|
||||
"lib/net8.0/Avalonia.Base.dll": {
|
||||
"assemblyVersion": "11.2.1.0",
|
||||
"fileVersion": "11.2.1.0"
|
||||
},
|
||||
"lib/net8.0/Avalonia.Controls.dll": {
|
||||
"assemblyVersion": "11.2.1.0",
|
||||
"fileVersion": "11.2.1.0"
|
||||
},
|
||||
"lib/net8.0/Avalonia.DesignerSupport.dll": {
|
||||
"assemblyVersion": "0.7.0.0",
|
||||
"fileVersion": "0.7.0.0"
|
||||
},
|
||||
"lib/net8.0/Avalonia.Dialogs.dll": {
|
||||
"assemblyVersion": "11.2.1.0",
|
||||
"fileVersion": "11.2.1.0"
|
||||
},
|
||||
"lib/net8.0/Avalonia.Markup.Xaml.dll": {
|
||||
"assemblyVersion": "11.2.1.0",
|
||||
"fileVersion": "11.2.1.0"
|
||||
},
|
||||
"lib/net8.0/Avalonia.Markup.dll": {
|
||||
"assemblyVersion": "11.2.1.0",
|
||||
"fileVersion": "11.2.1.0"
|
||||
},
|
||||
"lib/net8.0/Avalonia.Metal.dll": {
|
||||
"assemblyVersion": "11.2.1.0",
|
||||
"fileVersion": "11.2.1.0"
|
||||
},
|
||||
"lib/net8.0/Avalonia.MicroCom.dll": {
|
||||
"assemblyVersion": "11.2.1.0",
|
||||
"fileVersion": "11.2.1.0"
|
||||
},
|
||||
"lib/net8.0/Avalonia.OpenGL.dll": {
|
||||
"assemblyVersion": "11.2.1.0",
|
||||
"fileVersion": "11.2.1.0"
|
||||
},
|
||||
"lib/net8.0/Avalonia.Vulkan.dll": {
|
||||
"assemblyVersion": "11.2.1.0",
|
||||
"fileVersion": "11.2.1.0"
|
||||
},
|
||||
"lib/net8.0/Avalonia.dll": {
|
||||
"assemblyVersion": "11.2.1.0",
|
||||
"fileVersion": "11.2.1.0"
|
||||
}
|
||||
}
|
||||
},
|
||||
"Avalonia.Angle.Windows.Natives/2.1.22045.20230930": {
|
||||
"runtimeTargets": {
|
||||
"runtimes/win-arm64/native/av_libglesv2.dll": {
|
||||
"rid": "win-arm64",
|
||||
"assetType": "native",
|
||||
"fileVersion": "0.0.0.0"
|
||||
},
|
||||
"runtimes/win-x64/native/av_libglesv2.dll": {
|
||||
"rid": "win-x64",
|
||||
"assetType": "native",
|
||||
"fileVersion": "0.0.0.0"
|
||||
},
|
||||
"runtimes/win-x86/native/av_libglesv2.dll": {
|
||||
"rid": "win-x86",
|
||||
"assetType": "native",
|
||||
"fileVersion": "0.0.0.0"
|
||||
}
|
||||
}
|
||||
},
|
||||
"Avalonia.BuildServices/0.0.29": {},
|
||||
"Avalonia.Controls.ColorPicker/11.2.1": {
|
||||
"dependencies": {
|
||||
"Avalonia": "11.2.1",
|
||||
"Avalonia.Remote.Protocol": "11.2.1"
|
||||
},
|
||||
"runtime": {
|
||||
"lib/net8.0/Avalonia.Controls.ColorPicker.dll": {
|
||||
"assemblyVersion": "11.2.1.0",
|
||||
"fileVersion": "11.2.1.0"
|
||||
}
|
||||
}
|
||||
},
|
||||
"Avalonia.Controls.DataGrid/11.2.1": {
|
||||
"dependencies": {
|
||||
"Avalonia": "11.2.1",
|
||||
"Avalonia.Remote.Protocol": "11.2.1"
|
||||
},
|
||||
"runtime": {
|
||||
"lib/net8.0/Avalonia.Controls.DataGrid.dll": {
|
||||
"assemblyVersion": "11.2.1.0",
|
||||
"fileVersion": "11.2.1.0"
|
||||
}
|
||||
}
|
||||
},
|
||||
"Avalonia.Desktop/11.2.1": {
|
||||
"dependencies": {
|
||||
"Avalonia": "11.2.1",
|
||||
"Avalonia.Native": "11.2.1",
|
||||
"Avalonia.Skia": "11.2.1",
|
||||
"Avalonia.Win32": "11.2.1",
|
||||
"Avalonia.X11": "11.2.1"
|
||||
},
|
||||
"runtime": {
|
||||
"lib/net8.0/Avalonia.Desktop.dll": {
|
||||
"assemblyVersion": "11.2.1.0",
|
||||
"fileVersion": "11.2.1.0"
|
||||
}
|
||||
}
|
||||
},
|
||||
"Avalonia.Diagnostics/11.2.1": {
|
||||
"dependencies": {
|
||||
"Avalonia": "11.2.1",
|
||||
"Avalonia.Controls.ColorPicker": "11.2.1",
|
||||
"Avalonia.Controls.DataGrid": "11.2.1",
|
||||
"Avalonia.Themes.Simple": "11.2.1"
|
||||
},
|
||||
"runtime": {
|
||||
"lib/net8.0/Avalonia.Diagnostics.dll": {
|
||||
"assemblyVersion": "11.2.1.0",
|
||||
"fileVersion": "11.2.1.0"
|
||||
}
|
||||
}
|
||||
},
|
||||
"Avalonia.Fonts.Inter/11.2.1": {
|
||||
"dependencies": {
|
||||
"Avalonia": "11.2.1"
|
||||
},
|
||||
"runtime": {
|
||||
"lib/net8.0/Avalonia.Fonts.Inter.dll": {
|
||||
"assemblyVersion": "11.2.1.0",
|
||||
"fileVersion": "11.2.1.0"
|
||||
}
|
||||
}
|
||||
},
|
||||
"Avalonia.FreeDesktop/11.2.1": {
|
||||
"dependencies": {
|
||||
"Avalonia": "11.2.1",
|
||||
"Tmds.DBus.Protocol": "0.20.0"
|
||||
},
|
||||
"runtime": {
|
||||
"lib/net8.0/Avalonia.FreeDesktop.dll": {
|
||||
"assemblyVersion": "11.2.1.0",
|
||||
"fileVersion": "11.2.1.0"
|
||||
}
|
||||
}
|
||||
},
|
||||
"Avalonia.Native/11.2.1": {
|
||||
"dependencies": {
|
||||
"Avalonia": "11.2.1"
|
||||
},
|
||||
"runtime": {
|
||||
"lib/net8.0/Avalonia.Native.dll": {
|
||||
"assemblyVersion": "11.2.1.0",
|
||||
"fileVersion": "11.2.1.0"
|
||||
}
|
||||
},
|
||||
"runtimeTargets": {
|
||||
"runtimes/osx/native/libAvaloniaNative.dylib": {
|
||||
"rid": "osx",
|
||||
"assetType": "native",
|
||||
"fileVersion": "0.0.0.0"
|
||||
}
|
||||
}
|
||||
},
|
||||
"Avalonia.Remote.Protocol/11.2.1": {
|
||||
"runtime": {
|
||||
"lib/net8.0/Avalonia.Remote.Protocol.dll": {
|
||||
"assemblyVersion": "11.2.1.0",
|
||||
"fileVersion": "11.2.1.0"
|
||||
}
|
||||
}
|
||||
},
|
||||
"Avalonia.Skia/11.2.1": {
|
||||
"dependencies": {
|
||||
"Avalonia": "11.2.1",
|
||||
"HarfBuzzSharp": "7.3.0.2",
|
||||
"HarfBuzzSharp.NativeAssets.Linux": "7.3.0.2",
|
||||
"HarfBuzzSharp.NativeAssets.WebAssembly": "7.3.0.3-preview.2.2",
|
||||
"SkiaSharp": "2.88.8",
|
||||
"SkiaSharp.NativeAssets.Linux": "2.88.8",
|
||||
"SkiaSharp.NativeAssets.WebAssembly": "2.88.8"
|
||||
},
|
||||
"runtime": {
|
||||
"lib/net8.0/Avalonia.Skia.dll": {
|
||||
"assemblyVersion": "11.2.1.0",
|
||||
"fileVersion": "11.2.1.0"
|
||||
}
|
||||
}
|
||||
},
|
||||
"Avalonia.Themes.Fluent/11.2.1": {
|
||||
"dependencies": {
|
||||
"Avalonia": "11.2.1"
|
||||
},
|
||||
"runtime": {
|
||||
"lib/net8.0/Avalonia.Themes.Fluent.dll": {
|
||||
"assemblyVersion": "11.2.1.0",
|
||||
"fileVersion": "11.2.1.0"
|
||||
}
|
||||
}
|
||||
},
|
||||
"Avalonia.Themes.Simple/11.2.1": {
|
||||
"dependencies": {
|
||||
"Avalonia": "11.2.1"
|
||||
},
|
||||
"runtime": {
|
||||
"lib/net8.0/Avalonia.Themes.Simple.dll": {
|
||||
"assemblyVersion": "11.2.1.0",
|
||||
"fileVersion": "11.2.1.0"
|
||||
}
|
||||
}
|
||||
},
|
||||
"Avalonia.Win32/11.2.1": {
|
||||
"dependencies": {
|
||||
"Avalonia": "11.2.1",
|
||||
"Avalonia.Angle.Windows.Natives": "2.1.22045.20230930"
|
||||
},
|
||||
"runtime": {
|
||||
"lib/net8.0/Avalonia.Win32.dll": {
|
||||
"assemblyVersion": "11.2.1.0",
|
||||
"fileVersion": "11.2.1.0"
|
||||
}
|
||||
}
|
||||
},
|
||||
"Avalonia.X11/11.2.1": {
|
||||
"dependencies": {
|
||||
"Avalonia": "11.2.1",
|
||||
"Avalonia.FreeDesktop": "11.2.1",
|
||||
"Avalonia.Skia": "11.2.1"
|
||||
},
|
||||
"runtime": {
|
||||
"lib/net8.0/Avalonia.X11.dll": {
|
||||
"assemblyVersion": "11.2.1.0",
|
||||
"fileVersion": "11.2.1.0"
|
||||
}
|
||||
}
|
||||
},
|
||||
"CommunityToolkit.Mvvm/8.2.1": {
|
||||
"runtime": {
|
||||
"lib/net6.0/CommunityToolkit.Mvvm.dll": {
|
||||
"assemblyVersion": "8.2.0.0",
|
||||
"fileVersion": "8.2.1.1"
|
||||
}
|
||||
}
|
||||
},
|
||||
"HarfBuzzSharp/7.3.0.2": {
|
||||
"dependencies": {
|
||||
"HarfBuzzSharp.NativeAssets.Win32": "7.3.0.2",
|
||||
"HarfBuzzSharp.NativeAssets.macOS": "7.3.0.2"
|
||||
},
|
||||
"runtime": {
|
||||
"lib/net6.0/HarfBuzzSharp.dll": {
|
||||
"assemblyVersion": "1.0.0.0",
|
||||
"fileVersion": "7.3.0.2"
|
||||
}
|
||||
}
|
||||
},
|
||||
"HarfBuzzSharp.NativeAssets.Linux/7.3.0.2": {
|
||||
"dependencies": {
|
||||
"HarfBuzzSharp": "7.3.0.2"
|
||||
},
|
||||
"runtimeTargets": {
|
||||
"runtimes/linux-arm/native/libHarfBuzzSharp.so": {
|
||||
"rid": "linux-arm",
|
||||
"assetType": "native",
|
||||
"fileVersion": "0.0.0.0"
|
||||
},
|
||||
"runtimes/linux-arm64/native/libHarfBuzzSharp.so": {
|
||||
"rid": "linux-arm64",
|
||||
"assetType": "native",
|
||||
"fileVersion": "0.0.0.0"
|
||||
},
|
||||
"runtimes/linux-musl-x64/native/libHarfBuzzSharp.so": {
|
||||
"rid": "linux-musl-x64",
|
||||
"assetType": "native",
|
||||
"fileVersion": "0.0.0.0"
|
||||
},
|
||||
"runtimes/linux-x64/native/libHarfBuzzSharp.so": {
|
||||
"rid": "linux-x64",
|
||||
"assetType": "native",
|
||||
"fileVersion": "0.0.0.0"
|
||||
}
|
||||
}
|
||||
},
|
||||
"HarfBuzzSharp.NativeAssets.macOS/7.3.0.2": {
|
||||
"runtimeTargets": {
|
||||
"runtimes/osx/native/libHarfBuzzSharp.dylib": {
|
||||
"rid": "osx",
|
||||
"assetType": "native",
|
||||
"fileVersion": "0.0.0.0"
|
||||
}
|
||||
}
|
||||
},
|
||||
"HarfBuzzSharp.NativeAssets.WebAssembly/7.3.0.3-preview.2.2": {},
|
||||
"HarfBuzzSharp.NativeAssets.Win32/7.3.0.2": {
|
||||
"runtimeTargets": {
|
||||
"runtimes/win-arm64/native/libHarfBuzzSharp.dll": {
|
||||
"rid": "win-arm64",
|
||||
"assetType": "native",
|
||||
"fileVersion": "0.0.0.0"
|
||||
},
|
||||
"runtimes/win-x64/native/libHarfBuzzSharp.dll": {
|
||||
"rid": "win-x64",
|
||||
"assetType": "native",
|
||||
"fileVersion": "0.0.0.0"
|
||||
},
|
||||
"runtimes/win-x86/native/libHarfBuzzSharp.dll": {
|
||||
"rid": "win-x86",
|
||||
"assetType": "native",
|
||||
"fileVersion": "0.0.0.0"
|
||||
}
|
||||
}
|
||||
},
|
||||
"MicroCom.Runtime/0.11.0": {
|
||||
"runtime": {
|
||||
"lib/net5.0/MicroCom.Runtime.dll": {
|
||||
"assemblyVersion": "0.11.0.0",
|
||||
"fileVersion": "0.11.0.0"
|
||||
}
|
||||
}
|
||||
},
|
||||
"SkiaSharp/2.88.8": {
|
||||
"dependencies": {
|
||||
"SkiaSharp.NativeAssets.Win32": "2.88.8",
|
||||
"SkiaSharp.NativeAssets.macOS": "2.88.8"
|
||||
},
|
||||
"runtime": {
|
||||
"lib/net6.0/SkiaSharp.dll": {
|
||||
"assemblyVersion": "2.88.0.0",
|
||||
"fileVersion": "2.88.8.0"
|
||||
}
|
||||
}
|
||||
},
|
||||
"SkiaSharp.NativeAssets.Linux/2.88.8": {
|
||||
"dependencies": {
|
||||
"SkiaSharp": "2.88.8"
|
||||
},
|
||||
"runtimeTargets": {
|
||||
"runtimes/linux-arm/native/libSkiaSharp.so": {
|
||||
"rid": "linux-arm",
|
||||
"assetType": "native",
|
||||
"fileVersion": "0.0.0.0"
|
||||
},
|
||||
"runtimes/linux-arm64/native/libSkiaSharp.so": {
|
||||
"rid": "linux-arm64",
|
||||
"assetType": "native",
|
||||
"fileVersion": "0.0.0.0"
|
||||
},
|
||||
"runtimes/linux-musl-x64/native/libSkiaSharp.so": {
|
||||
"rid": "linux-musl-x64",
|
||||
"assetType": "native",
|
||||
"fileVersion": "0.0.0.0"
|
||||
},
|
||||
"runtimes/linux-x64/native/libSkiaSharp.so": {
|
||||
"rid": "linux-x64",
|
||||
"assetType": "native",
|
||||
"fileVersion": "0.0.0.0"
|
||||
}
|
||||
}
|
||||
},
|
||||
"SkiaSharp.NativeAssets.macOS/2.88.8": {
|
||||
"runtimeTargets": {
|
||||
"runtimes/osx/native/libSkiaSharp.dylib": {
|
||||
"rid": "osx",
|
||||
"assetType": "native",
|
||||
"fileVersion": "0.0.0.0"
|
||||
}
|
||||
}
|
||||
},
|
||||
"SkiaSharp.NativeAssets.WebAssembly/2.88.8": {},
|
||||
"SkiaSharp.NativeAssets.Win32/2.88.8": {
|
||||
"runtimeTargets": {
|
||||
"runtimes/win-arm64/native/libSkiaSharp.dll": {
|
||||
"rid": "win-arm64",
|
||||
"assetType": "native",
|
||||
"fileVersion": "0.0.0.0"
|
||||
},
|
||||
"runtimes/win-x64/native/libSkiaSharp.dll": {
|
||||
"rid": "win-x64",
|
||||
"assetType": "native",
|
||||
"fileVersion": "0.0.0.0"
|
||||
},
|
||||
"runtimes/win-x86/native/libSkiaSharp.dll": {
|
||||
"rid": "win-x86",
|
||||
"assetType": "native",
|
||||
"fileVersion": "0.0.0.0"
|
||||
}
|
||||
}
|
||||
},
|
||||
"System.IO.Pipelines/8.0.0": {},
|
||||
"Tmds.DBus.Protocol/0.20.0": {
|
||||
"dependencies": {
|
||||
"System.IO.Pipelines": "8.0.0"
|
||||
},
|
||||
"runtime": {
|
||||
"lib/net8.0/Tmds.DBus.Protocol.dll": {
|
||||
"assemblyVersion": "0.20.0.0",
|
||||
"fileVersion": "0.20.0.0"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"libraries": {
|
||||
"SessionZero/1.0.0": {
|
||||
"type": "project",
|
||||
"serviceable": false,
|
||||
"sha512": ""
|
||||
},
|
||||
"Avalonia/11.2.1": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-AyYhIN2A7bRwxp6BFHrIbXAHUFPXegzSMYwDrUnw1BzZs9ctwYTiCPCM5wbE2PXsEBwFDVJ/a2YHTOp56fSYAw==",
|
||||
"path": "avalonia/11.2.1",
|
||||
"hashPath": "avalonia.11.2.1.nupkg.sha512"
|
||||
},
|
||||
"Avalonia.Angle.Windows.Natives/2.1.22045.20230930": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-Bo3qOhKC1b84BIhiogndMdAzB3UrrESKK7hS769f5HWeoMw/pcd42US5KFYW2JJ4ZSTrXnP8mXwLTMzh+S+9Lg==",
|
||||
"path": "avalonia.angle.windows.natives/2.1.22045.20230930",
|
||||
"hashPath": "avalonia.angle.windows.natives.2.1.22045.20230930.nupkg.sha512"
|
||||
},
|
||||
"Avalonia.BuildServices/0.0.29": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-U4eJLQdoDNHXtEba7MZUCwrBErBTxFp6sUewXBOdAhU0Kwzwaa/EKFcYm8kpcysjzKtfB4S0S9n0uxKZFz/ikw==",
|
||||
"path": "avalonia.buildservices/0.0.29",
|
||||
"hashPath": "avalonia.buildservices.0.0.29.nupkg.sha512"
|
||||
},
|
||||
"Avalonia.Controls.ColorPicker/11.2.1": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-t8ViFwfIe6jCO5HvzPWOtwGNSMHYNc8XakWp76Rgy1MOiht8tHKry9cU7k40AHEYU6wVjiYBkl0c8zYZyyha1g==",
|
||||
"path": "avalonia.controls.colorpicker/11.2.1",
|
||||
"hashPath": "avalonia.controls.colorpicker.11.2.1.nupkg.sha512"
|
||||
},
|
||||
"Avalonia.Controls.DataGrid/11.2.1": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-UaNQrY86GBqMZqZ/N/5/wLzr4Emh2N405VZI/IgH0I8BoMrjnosNr+++D7BOcahMNce0lUZLOsFyy+OY02PUAw==",
|
||||
"path": "avalonia.controls.datagrid/11.2.1",
|
||||
"hashPath": "avalonia.controls.datagrid.11.2.1.nupkg.sha512"
|
||||
},
|
||||
"Avalonia.Desktop/11.2.1": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-q6alzkTgFjukOrbiiFlh0mkhkxGRMRTMS8zdNEixIl9apPnD2ln9sjAC4NR2agNz5+HmZVfXYu6kYK12rMmKwA==",
|
||||
"path": "avalonia.desktop/11.2.1",
|
||||
"hashPath": "avalonia.desktop.11.2.1.nupkg.sha512"
|
||||
},
|
||||
"Avalonia.Diagnostics/11.2.1": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-axUWa4sZoe9HgUXPEDhbZXijL8ex+lwQGVwNQLmD299O7pCqKcYThjyG/eCETO/boqjKTt3H85LHEPx94BP9dg==",
|
||||
"path": "avalonia.diagnostics/11.2.1",
|
||||
"hashPath": "avalonia.diagnostics.11.2.1.nupkg.sha512"
|
||||
},
|
||||
"Avalonia.Fonts.Inter/11.2.1": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-egEFQWLHuSzyWKolPy9u4qPor270N2GL/4CI33eBxr09chrUVQsOlxQ6zeWPiBLzzgv/lCrZhOMCAIWsOz3tNg==",
|
||||
"path": "avalonia.fonts.inter/11.2.1",
|
||||
"hashPath": "avalonia.fonts.inter.11.2.1.nupkg.sha512"
|
||||
},
|
||||
"Avalonia.FreeDesktop/11.2.1": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-ChKdPjQ2uBJUN0y+/RsdoETzXRn/q1eWFBDwprDy+Zi/AVkUfRk06hKbsb/U+Q3zO65CMEprRcMPbys0EkK2vg==",
|
||||
"path": "avalonia.freedesktop/11.2.1",
|
||||
"hashPath": "avalonia.freedesktop.11.2.1.nupkg.sha512"
|
||||
},
|
||||
"Avalonia.Native/11.2.1": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-1cVasDUIkqfAYLkaLFDx+VDZymer2v643OYD6Jd6nzP20TNTqN2LfFOpxXCTYMrWc9Dk5AoVJJCrz3wRE5kooQ==",
|
||||
"path": "avalonia.native/11.2.1",
|
||||
"hashPath": "avalonia.native.11.2.1.nupkg.sha512"
|
||||
},
|
||||
"Avalonia.Remote.Protocol/11.2.1": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-aqEialxjir7DO/dOFf7BGN/yQ4/adSC5UuVfqBr/RUHOENSH6CqoHj8kmtmJxnuz7ESQFSB2+h1kLVnk5csiDw==",
|
||||
"path": "avalonia.remote.protocol/11.2.1",
|
||||
"hashPath": "avalonia.remote.protocol.11.2.1.nupkg.sha512"
|
||||
},
|
||||
"Avalonia.Skia/11.2.1": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-FkqiXWT1hN0s5MIx5IKDGZaqewQENikQh6aBQyApiZVu5koa8H8RW1yfb2cFK3M4IVIyhqwl8ZirkXsS18lf/Q==",
|
||||
"path": "avalonia.skia/11.2.1",
|
||||
"hashPath": "avalonia.skia.11.2.1.nupkg.sha512"
|
||||
},
|
||||
"Avalonia.Themes.Fluent/11.2.1": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-9YUzDmZO5oDppsoA3Igeu/v1cVi4xu8jdO6ZrBzXJXJ9mma/htK0Ub9+V1lRoCW/O70nQfBX+ZDpm0dca1PVgw==",
|
||||
"path": "avalonia.themes.fluent/11.2.1",
|
||||
"hashPath": "avalonia.themes.fluent.11.2.1.nupkg.sha512"
|
||||
},
|
||||
"Avalonia.Themes.Simple/11.2.1": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-ToiYv8hhJ5gcEtD54VZv7NpBFiqGasj4bjFh/AtjXApiYOp8r3orFPX8Nsc3kHcUCvNNjbjAy9dmBG65nYePkw==",
|
||||
"path": "avalonia.themes.simple/11.2.1",
|
||||
"hashPath": "avalonia.themes.simple.11.2.1.nupkg.sha512"
|
||||
},
|
||||
"Avalonia.Win32/11.2.1": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-7Gfw7S1PoINaCXaIV1rh7zo82IhsqhR7a0PAt281cBrfDkJiNU0DYgW2RZxKl3oVFxtfbxJZbdP7hSVmHvoDfw==",
|
||||
"path": "avalonia.win32/11.2.1",
|
||||
"hashPath": "avalonia.win32.11.2.1.nupkg.sha512"
|
||||
},
|
||||
"Avalonia.X11/11.2.1": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-h2aCpyLmxGkldPK7cbncEgyobrJ5En7gQtrwVARLmN32Rw6dHut3jyF3P8at2DmWxRuKwZVXgWBSSI62hINgrQ==",
|
||||
"path": "avalonia.x11/11.2.1",
|
||||
"hashPath": "avalonia.x11.11.2.1.nupkg.sha512"
|
||||
},
|
||||
"CommunityToolkit.Mvvm/8.2.1": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-I24ofWVEdplxYjUez9/bljv/qb8r8Ccj6cvYXHexNBegLaD3iDy3QrzAAOYVMmfGWIXxlU1ZtECQNfU07+6hXQ==",
|
||||
"path": "communitytoolkit.mvvm/8.2.1",
|
||||
"hashPath": "communitytoolkit.mvvm.8.2.1.nupkg.sha512"
|
||||
},
|
||||
"HarfBuzzSharp/7.3.0.2": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-0tCd6HyCmNsX/DniCp2b00fo0xPbdNwKOs9BxxyT8oOOuMlWjcSFwzONKyeckCKVBFEsbSmsAHPDTqxoSDwZMg==",
|
||||
"path": "harfbuzzsharp/7.3.0.2",
|
||||
"hashPath": "harfbuzzsharp.7.3.0.2.nupkg.sha512"
|
||||
},
|
||||
"HarfBuzzSharp.NativeAssets.Linux/7.3.0.2": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-aKa5J1RqjXKAtdcZJp5wjC78klfBIzJHM6CneN76lFmQ9LLRJA9Oa0TkIDaV8lVLDKMAy5fCKHXFlXUK1YfL/g==",
|
||||
"path": "harfbuzzsharp.nativeassets.linux/7.3.0.2",
|
||||
"hashPath": "harfbuzzsharp.nativeassets.linux.7.3.0.2.nupkg.sha512"
|
||||
},
|
||||
"HarfBuzzSharp.NativeAssets.macOS/7.3.0.2": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-nycYH/WLJ6ogm+I+QSFCdPJsdxSb5GANWYbQyp1vsd/KjXN56RVUJWPhbgP2GKb/Y7mrsHM7EProqVXlO/EMsA==",
|
||||
"path": "harfbuzzsharp.nativeassets.macos/7.3.0.2",
|
||||
"hashPath": "harfbuzzsharp.nativeassets.macos.7.3.0.2.nupkg.sha512"
|
||||
},
|
||||
"HarfBuzzSharp.NativeAssets.WebAssembly/7.3.0.3-preview.2.2": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-Dc+dolrhmkpqwT25NfNEEgceW0//KRR2WIOvxlyIIHIIMBCn0FfUeJX5RhFll8kyaZwF8tuKsxRJtQG/rzSBog==",
|
||||
"path": "harfbuzzsharp.nativeassets.webassembly/7.3.0.3-preview.2.2",
|
||||
"hashPath": "harfbuzzsharp.nativeassets.webassembly.7.3.0.3-preview.2.2.nupkg.sha512"
|
||||
},
|
||||
"HarfBuzzSharp.NativeAssets.Win32/7.3.0.2": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-DpF9JBzwws2dupOLnjME65hxQWWbN/GD40AoTkwB4S05WANvxo3n81AnQJKxWDCnrWfWhLPB36OF27TvEqzb/A==",
|
||||
"path": "harfbuzzsharp.nativeassets.win32/7.3.0.2",
|
||||
"hashPath": "harfbuzzsharp.nativeassets.win32.7.3.0.2.nupkg.sha512"
|
||||
},
|
||||
"MicroCom.Runtime/0.11.0": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-MEnrZ3UIiH40hjzMDsxrTyi8dtqB5ziv3iBeeU4bXsL/7NLSal9F1lZKpK+tfBRnUoDSdtcW3KufE4yhATOMCA==",
|
||||
"path": "microcom.runtime/0.11.0",
|
||||
"hashPath": "microcom.runtime.0.11.0.nupkg.sha512"
|
||||
},
|
||||
"SkiaSharp/2.88.8": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-bRkp3uKp5ZI8gXYQT57uKwil1uobb2p8c69n7v5evlB/2JNcMAXVcw9DZAP5Ig3WSvgzGm2YSn27UVeOi05NlA==",
|
||||
"path": "skiasharp/2.88.8",
|
||||
"hashPath": "skiasharp.2.88.8.nupkg.sha512"
|
||||
},
|
||||
"SkiaSharp.NativeAssets.Linux/2.88.8": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-0FO6YA7paNFBMJULvEyecPmCvL9/STvOAi5VOUw2srqJ7pNTbiiZkfl7sulAzcumbWgfzaVjRXYTgMj7SoUnWQ==",
|
||||
"path": "skiasharp.nativeassets.linux/2.88.8",
|
||||
"hashPath": "skiasharp.nativeassets.linux.2.88.8.nupkg.sha512"
|
||||
},
|
||||
"SkiaSharp.NativeAssets.macOS/2.88.8": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-6Kn5TSkKlfyS6azWHF3Jk2sW5C4jCE5uSshM/5AbfFrR+5n6qM5XEnz9h4VaVl7LTxBvHvMkuPb/3bpbq0vxTw==",
|
||||
"path": "skiasharp.nativeassets.macos/2.88.8",
|
||||
"hashPath": "skiasharp.nativeassets.macos.2.88.8.nupkg.sha512"
|
||||
},
|
||||
"SkiaSharp.NativeAssets.WebAssembly/2.88.8": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-S3qRo8c+gVYOyfrdf6FYnjx/ft+gPkb4dNY2IPv5Oy5yNBhDhXhKqHFr9h4+ne6ZU+7D4dbuRQqsIqCo8u1/DA==",
|
||||
"path": "skiasharp.nativeassets.webassembly/2.88.8",
|
||||
"hashPath": "skiasharp.nativeassets.webassembly.2.88.8.nupkg.sha512"
|
||||
},
|
||||
"SkiaSharp.NativeAssets.Win32/2.88.8": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-O9QXoWEXA+6cweR4h3BOnwMz+pO9vL9mXdjLrpDd0w1QzCgWmLQBxa1VgySDITiH7nQndrDG1h6937zm9pLj1Q==",
|
||||
"path": "skiasharp.nativeassets.win32/2.88.8",
|
||||
"hashPath": "skiasharp.nativeassets.win32.2.88.8.nupkg.sha512"
|
||||
},
|
||||
"System.IO.Pipelines/8.0.0": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-FHNOatmUq0sqJOkTx+UF/9YK1f180cnW5FVqnQMvYUN0elp6wFzbtPSiqbo1/ru8ICp43JM1i7kKkk6GsNGHlA==",
|
||||
"path": "system.io.pipelines/8.0.0",
|
||||
"hashPath": "system.io.pipelines.8.0.0.nupkg.sha512"
|
||||
},
|
||||
"Tmds.DBus.Protocol/0.20.0": {
|
||||
"type": "package",
|
||||
"serviceable": true,
|
||||
"sha512": "sha512-2gkt2kuYPhDKd8gtl34jZSJOnn4nRJfFngCDcTZT/uySbK++ua0YQx2418l9Rn1Y4dE5XNq6zG9ZsE5ltLlNNw==",
|
||||
"path": "tmds.dbus.protocol/0.20.0",
|
||||
"hashPath": "tmds.dbus.protocol.0.20.0.nupkg.sha512"
|
||||
}
|
||||
}
|
||||
}
|
BIN
bin/Debug/net9.0/SessionZero.dll
Normal file
BIN
bin/Debug/net9.0/SessionZero.dll
Normal file
Binary file not shown.
BIN
bin/Debug/net9.0/SessionZero.pdb
Normal file
BIN
bin/Debug/net9.0/SessionZero.pdb
Normal file
Binary file not shown.
13
bin/Debug/net9.0/SessionZero.runtimeconfig.json
Normal file
13
bin/Debug/net9.0/SessionZero.runtimeconfig.json
Normal file
@ -0,0 +1,13 @@
|
||||
{
|
||||
"runtimeOptions": {
|
||||
"tfm": "net9.0",
|
||||
"framework": {
|
||||
"name": "Microsoft.NETCore.App",
|
||||
"version": "9.0.0"
|
||||
},
|
||||
"configProperties": {
|
||||
"System.Runtime.InteropServices.BuiltInComInterop.IsSupported": true,
|
||||
"System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": false
|
||||
}
|
||||
}
|
||||
}
|
BIN
bin/Debug/net9.0/SkiaSharp.dll
Executable file
BIN
bin/Debug/net9.0/SkiaSharp.dll
Executable file
Binary file not shown.
BIN
bin/Debug/net9.0/Tmds.DBus.Protocol.dll
Executable file
BIN
bin/Debug/net9.0/Tmds.DBus.Protocol.dll
Executable file
Binary file not shown.
BIN
bin/Debug/net9.0/runtimes/linux-arm/native/libHarfBuzzSharp.so
Executable file
BIN
bin/Debug/net9.0/runtimes/linux-arm/native/libHarfBuzzSharp.so
Executable file
Binary file not shown.
BIN
bin/Debug/net9.0/runtimes/linux-arm/native/libSkiaSharp.so
Executable file
BIN
bin/Debug/net9.0/runtimes/linux-arm/native/libSkiaSharp.so
Executable file
Binary file not shown.
BIN
bin/Debug/net9.0/runtimes/linux-arm64/native/libHarfBuzzSharp.so
Executable file
BIN
bin/Debug/net9.0/runtimes/linux-arm64/native/libHarfBuzzSharp.so
Executable file
Binary file not shown.
BIN
bin/Debug/net9.0/runtimes/linux-arm64/native/libSkiaSharp.so
Executable file
BIN
bin/Debug/net9.0/runtimes/linux-arm64/native/libSkiaSharp.so
Executable file
Binary file not shown.
BIN
bin/Debug/net9.0/runtimes/linux-musl-x64/native/libHarfBuzzSharp.so
Executable file
BIN
bin/Debug/net9.0/runtimes/linux-musl-x64/native/libHarfBuzzSharp.so
Executable file
Binary file not shown.
BIN
bin/Debug/net9.0/runtimes/linux-musl-x64/native/libSkiaSharp.so
Executable file
BIN
bin/Debug/net9.0/runtimes/linux-musl-x64/native/libSkiaSharp.so
Executable file
Binary file not shown.
BIN
bin/Debug/net9.0/runtimes/linux-x64/native/libHarfBuzzSharp.so
Executable file
BIN
bin/Debug/net9.0/runtimes/linux-x64/native/libHarfBuzzSharp.so
Executable file
Binary file not shown.
BIN
bin/Debug/net9.0/runtimes/linux-x64/native/libSkiaSharp.so
Executable file
BIN
bin/Debug/net9.0/runtimes/linux-x64/native/libSkiaSharp.so
Executable file
Binary file not shown.
BIN
bin/Debug/net9.0/runtimes/osx/native/libAvaloniaNative.dylib
Executable file
BIN
bin/Debug/net9.0/runtimes/osx/native/libAvaloniaNative.dylib
Executable file
Binary file not shown.
BIN
bin/Debug/net9.0/runtimes/osx/native/libHarfBuzzSharp.dylib
Executable file
BIN
bin/Debug/net9.0/runtimes/osx/native/libHarfBuzzSharp.dylib
Executable file
Binary file not shown.
BIN
bin/Debug/net9.0/runtimes/osx/native/libSkiaSharp.dylib
Executable file
BIN
bin/Debug/net9.0/runtimes/osx/native/libSkiaSharp.dylib
Executable file
Binary file not shown.
BIN
bin/Debug/net9.0/runtimes/win-arm64/native/av_libglesv2.dll
Executable file
BIN
bin/Debug/net9.0/runtimes/win-arm64/native/av_libglesv2.dll
Executable file
Binary file not shown.
BIN
bin/Debug/net9.0/runtimes/win-arm64/native/libHarfBuzzSharp.dll
Executable file
BIN
bin/Debug/net9.0/runtimes/win-arm64/native/libHarfBuzzSharp.dll
Executable file
Binary file not shown.
BIN
bin/Debug/net9.0/runtimes/win-arm64/native/libSkiaSharp.dll
Executable file
BIN
bin/Debug/net9.0/runtimes/win-arm64/native/libSkiaSharp.dll
Executable file
Binary file not shown.
BIN
bin/Debug/net9.0/runtimes/win-x64/native/av_libglesv2.dll
Executable file
BIN
bin/Debug/net9.0/runtimes/win-x64/native/av_libglesv2.dll
Executable file
Binary file not shown.
BIN
bin/Debug/net9.0/runtimes/win-x64/native/libHarfBuzzSharp.dll
Executable file
BIN
bin/Debug/net9.0/runtimes/win-x64/native/libHarfBuzzSharp.dll
Executable file
Binary file not shown.
BIN
bin/Debug/net9.0/runtimes/win-x64/native/libSkiaSharp.dll
Executable file
BIN
bin/Debug/net9.0/runtimes/win-x64/native/libSkiaSharp.dll
Executable file
Binary file not shown.
BIN
bin/Debug/net9.0/runtimes/win-x86/native/av_libglesv2.dll
Executable file
BIN
bin/Debug/net9.0/runtimes/win-x86/native/av_libglesv2.dll
Executable file
Binary file not shown.
BIN
bin/Debug/net9.0/runtimes/win-x86/native/libHarfBuzzSharp.dll
Executable file
BIN
bin/Debug/net9.0/runtimes/win-x86/native/libHarfBuzzSharp.dll
Executable file
Binary file not shown.
BIN
bin/Debug/net9.0/runtimes/win-x86/native/libSkiaSharp.dll
Executable file
BIN
bin/Debug/net9.0/runtimes/win-x86/native/libSkiaSharp.dll
Executable file
Binary file not shown.
@ -0,0 +1,4 @@
|
||||
// <autogenerated />
|
||||
using System;
|
||||
using System.Reflection;
|
||||
[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v9.0", FrameworkDisplayName = ".NET 9.0")]
|
1
obj/Debug/net9.0/Avalonia/Resources.Inputs.cache
Normal file
1
obj/Debug/net9.0/Avalonia/Resources.Inputs.cache
Normal file
@ -0,0 +1 @@
|
||||
0af5791377bc86c35c6736522485beccca5d13e6d616a9819f78028304888ff8
|
BIN
obj/Debug/net9.0/Avalonia/SessionZero.dll
Normal file
BIN
obj/Debug/net9.0/Avalonia/SessionZero.dll
Normal file
Binary file not shown.
BIN
obj/Debug/net9.0/Avalonia/SessionZero.pdb
Normal file
BIN
obj/Debug/net9.0/Avalonia/SessionZero.pdb
Normal file
Binary file not shown.
193
obj/Debug/net9.0/Avalonia/references
Normal file
193
obj/Debug/net9.0/Avalonia/references
Normal file
@ -0,0 +1,193 @@
|
||||
/home/chris/.nuget/packages/avalonia/11.2.1/ref/net8.0/Avalonia.Base.dll
|
||||
/home/chris/.nuget/packages/avalonia.controls.colorpicker/11.2.1/lib/net8.0/Avalonia.Controls.ColorPicker.dll
|
||||
/home/chris/.nuget/packages/avalonia.controls.datagrid/11.2.1/lib/net8.0/Avalonia.Controls.DataGrid.dll
|
||||
/home/chris/.nuget/packages/avalonia/11.2.1/ref/net8.0/Avalonia.Controls.dll
|
||||
/home/chris/.nuget/packages/avalonia/11.2.1/ref/net8.0/Avalonia.DesignerSupport.dll
|
||||
/home/chris/.nuget/packages/avalonia.desktop/11.2.1/lib/net8.0/Avalonia.Desktop.dll
|
||||
/home/chris/.nuget/packages/avalonia.diagnostics/11.2.1/lib/net8.0/Avalonia.Diagnostics.dll
|
||||
/home/chris/.nuget/packages/avalonia/11.2.1/ref/net8.0/Avalonia.Dialogs.dll
|
||||
/home/chris/.nuget/packages/avalonia/11.2.1/ref/net8.0/Avalonia.dll
|
||||
/home/chris/.nuget/packages/avalonia.fonts.inter/11.2.1/lib/net8.0/Avalonia.Fonts.Inter.dll
|
||||
/home/chris/.nuget/packages/avalonia.freedesktop/11.2.1/lib/net8.0/Avalonia.FreeDesktop.dll
|
||||
/home/chris/.nuget/packages/avalonia/11.2.1/ref/net8.0/Avalonia.Markup.dll
|
||||
/home/chris/.nuget/packages/avalonia/11.2.1/ref/net8.0/Avalonia.Markup.Xaml.dll
|
||||
/home/chris/.nuget/packages/avalonia/11.2.1/ref/net8.0/Avalonia.Metal.dll
|
||||
/home/chris/.nuget/packages/avalonia/11.2.1/ref/net8.0/Avalonia.MicroCom.dll
|
||||
/home/chris/.nuget/packages/avalonia.native/11.2.1/lib/net8.0/Avalonia.Native.dll
|
||||
/home/chris/.nuget/packages/avalonia/11.2.1/ref/net8.0/Avalonia.OpenGL.dll
|
||||
/home/chris/.nuget/packages/avalonia.remote.protocol/11.2.1/lib/net8.0/Avalonia.Remote.Protocol.dll
|
||||
/home/chris/.nuget/packages/avalonia.skia/11.2.1/lib/net8.0/Avalonia.Skia.dll
|
||||
/home/chris/.nuget/packages/avalonia.themes.fluent/11.2.1/lib/net8.0/Avalonia.Themes.Fluent.dll
|
||||
/home/chris/.nuget/packages/avalonia.themes.simple/11.2.1/lib/net8.0/Avalonia.Themes.Simple.dll
|
||||
/home/chris/.nuget/packages/avalonia/11.2.1/ref/net8.0/Avalonia.Vulkan.dll
|
||||
/home/chris/.nuget/packages/avalonia.win32/11.2.1/lib/net8.0/Avalonia.Win32.dll
|
||||
/home/chris/.nuget/packages/avalonia.x11/11.2.1/lib/net8.0/Avalonia.X11.dll
|
||||
/home/chris/.nuget/packages/communitytoolkit.mvvm/8.2.1/lib/net6.0/CommunityToolkit.Mvvm.dll
|
||||
/home/chris/.nuget/packages/harfbuzzsharp/7.3.0.2/lib/net6.0/HarfBuzzSharp.dll
|
||||
/home/chris/.nuget/packages/microcom.runtime/0.11.0/lib/net5.0/MicroCom.Runtime.dll
|
||||
/nix/store/985ricafzdi4rihnd9qd8h6zr4v1cjw7-dotnet-combined/share/dotnet/packs/Microsoft.NETCore.App.Ref/9.0.3/ref/net9.0/Microsoft.CSharp.dll
|
||||
/nix/store/985ricafzdi4rihnd9qd8h6zr4v1cjw7-dotnet-combined/share/dotnet/packs/Microsoft.NETCore.App.Ref/9.0.3/ref/net9.0/Microsoft.VisualBasic.Core.dll
|
||||
/nix/store/985ricafzdi4rihnd9qd8h6zr4v1cjw7-dotnet-combined/share/dotnet/packs/Microsoft.NETCore.App.Ref/9.0.3/ref/net9.0/Microsoft.VisualBasic.dll
|
||||
/nix/store/985ricafzdi4rihnd9qd8h6zr4v1cjw7-dotnet-combined/share/dotnet/packs/Microsoft.NETCore.App.Ref/9.0.3/ref/net9.0/Microsoft.Win32.Primitives.dll
|
||||
/nix/store/985ricafzdi4rihnd9qd8h6zr4v1cjw7-dotnet-combined/share/dotnet/packs/Microsoft.NETCore.App.Ref/9.0.3/ref/net9.0/Microsoft.Win32.Registry.dll
|
||||
/nix/store/985ricafzdi4rihnd9qd8h6zr4v1cjw7-dotnet-combined/share/dotnet/packs/Microsoft.NETCore.App.Ref/9.0.3/ref/net9.0/mscorlib.dll
|
||||
/nix/store/985ricafzdi4rihnd9qd8h6zr4v1cjw7-dotnet-combined/share/dotnet/packs/Microsoft.NETCore.App.Ref/9.0.3/ref/net9.0/netstandard.dll
|
||||
/home/chris/.nuget/packages/skiasharp/2.88.8/lib/net6.0/SkiaSharp.dll
|
||||
/nix/store/985ricafzdi4rihnd9qd8h6zr4v1cjw7-dotnet-combined/share/dotnet/packs/Microsoft.NETCore.App.Ref/9.0.3/ref/net9.0/System.AppContext.dll
|
||||
/nix/store/985ricafzdi4rihnd9qd8h6zr4v1cjw7-dotnet-combined/share/dotnet/packs/Microsoft.NETCore.App.Ref/9.0.3/ref/net9.0/System.Buffers.dll
|
||||
/nix/store/985ricafzdi4rihnd9qd8h6zr4v1cjw7-dotnet-combined/share/dotnet/packs/Microsoft.NETCore.App.Ref/9.0.3/ref/net9.0/System.Collections.Concurrent.dll
|
||||
/nix/store/985ricafzdi4rihnd9qd8h6zr4v1cjw7-dotnet-combined/share/dotnet/packs/Microsoft.NETCore.App.Ref/9.0.3/ref/net9.0/System.Collections.dll
|
||||
/nix/store/985ricafzdi4rihnd9qd8h6zr4v1cjw7-dotnet-combined/share/dotnet/packs/Microsoft.NETCore.App.Ref/9.0.3/ref/net9.0/System.Collections.Immutable.dll
|
||||
/nix/store/985ricafzdi4rihnd9qd8h6zr4v1cjw7-dotnet-combined/share/dotnet/packs/Microsoft.NETCore.App.Ref/9.0.3/ref/net9.0/System.Collections.NonGeneric.dll
|
||||
/nix/store/985ricafzdi4rihnd9qd8h6zr4v1cjw7-dotnet-combined/share/dotnet/packs/Microsoft.NETCore.App.Ref/9.0.3/ref/net9.0/System.Collections.Specialized.dll
|
||||
/nix/store/985ricafzdi4rihnd9qd8h6zr4v1cjw7-dotnet-combined/share/dotnet/packs/Microsoft.NETCore.App.Ref/9.0.3/ref/net9.0/System.ComponentModel.Annotations.dll
|
||||
/nix/store/985ricafzdi4rihnd9qd8h6zr4v1cjw7-dotnet-combined/share/dotnet/packs/Microsoft.NETCore.App.Ref/9.0.3/ref/net9.0/System.ComponentModel.DataAnnotations.dll
|
||||
/nix/store/985ricafzdi4rihnd9qd8h6zr4v1cjw7-dotnet-combined/share/dotnet/packs/Microsoft.NETCore.App.Ref/9.0.3/ref/net9.0/System.ComponentModel.dll
|
||||
/nix/store/985ricafzdi4rihnd9qd8h6zr4v1cjw7-dotnet-combined/share/dotnet/packs/Microsoft.NETCore.App.Ref/9.0.3/ref/net9.0/System.ComponentModel.EventBasedAsync.dll
|
||||
/nix/store/985ricafzdi4rihnd9qd8h6zr4v1cjw7-dotnet-combined/share/dotnet/packs/Microsoft.NETCore.App.Ref/9.0.3/ref/net9.0/System.ComponentModel.Primitives.dll
|
||||
/nix/store/985ricafzdi4rihnd9qd8h6zr4v1cjw7-dotnet-combined/share/dotnet/packs/Microsoft.NETCore.App.Ref/9.0.3/ref/net9.0/System.ComponentModel.TypeConverter.dll
|
||||
/nix/store/985ricafzdi4rihnd9qd8h6zr4v1cjw7-dotnet-combined/share/dotnet/packs/Microsoft.NETCore.App.Ref/9.0.3/ref/net9.0/System.Configuration.dll
|
||||
/nix/store/985ricafzdi4rihnd9qd8h6zr4v1cjw7-dotnet-combined/share/dotnet/packs/Microsoft.NETCore.App.Ref/9.0.3/ref/net9.0/System.Console.dll
|
||||
/nix/store/985ricafzdi4rihnd9qd8h6zr4v1cjw7-dotnet-combined/share/dotnet/packs/Microsoft.NETCore.App.Ref/9.0.3/ref/net9.0/System.Core.dll
|
||||
/nix/store/985ricafzdi4rihnd9qd8h6zr4v1cjw7-dotnet-combined/share/dotnet/packs/Microsoft.NETCore.App.Ref/9.0.3/ref/net9.0/System.Data.Common.dll
|
||||
/nix/store/985ricafzdi4rihnd9qd8h6zr4v1cjw7-dotnet-combined/share/dotnet/packs/Microsoft.NETCore.App.Ref/9.0.3/ref/net9.0/System.Data.DataSetExtensions.dll
|
||||
/nix/store/985ricafzdi4rihnd9qd8h6zr4v1cjw7-dotnet-combined/share/dotnet/packs/Microsoft.NETCore.App.Ref/9.0.3/ref/net9.0/System.Data.dll
|
||||
/nix/store/985ricafzdi4rihnd9qd8h6zr4v1cjw7-dotnet-combined/share/dotnet/packs/Microsoft.NETCore.App.Ref/9.0.3/ref/net9.0/System.Diagnostics.Contracts.dll
|
||||
/nix/store/985ricafzdi4rihnd9qd8h6zr4v1cjw7-dotnet-combined/share/dotnet/packs/Microsoft.NETCore.App.Ref/9.0.3/ref/net9.0/System.Diagnostics.Debug.dll
|
||||
/nix/store/985ricafzdi4rihnd9qd8h6zr4v1cjw7-dotnet-combined/share/dotnet/packs/Microsoft.NETCore.App.Ref/9.0.3/ref/net9.0/System.Diagnostics.DiagnosticSource.dll
|
||||
/nix/store/985ricafzdi4rihnd9qd8h6zr4v1cjw7-dotnet-combined/share/dotnet/packs/Microsoft.NETCore.App.Ref/9.0.3/ref/net9.0/System.Diagnostics.FileVersionInfo.dll
|
||||
/nix/store/985ricafzdi4rihnd9qd8h6zr4v1cjw7-dotnet-combined/share/dotnet/packs/Microsoft.NETCore.App.Ref/9.0.3/ref/net9.0/System.Diagnostics.Process.dll
|
||||
/nix/store/985ricafzdi4rihnd9qd8h6zr4v1cjw7-dotnet-combined/share/dotnet/packs/Microsoft.NETCore.App.Ref/9.0.3/ref/net9.0/System.Diagnostics.StackTrace.dll
|
||||
/nix/store/985ricafzdi4rihnd9qd8h6zr4v1cjw7-dotnet-combined/share/dotnet/packs/Microsoft.NETCore.App.Ref/9.0.3/ref/net9.0/System.Diagnostics.TextWriterTraceListener.dll
|
||||
/nix/store/985ricafzdi4rihnd9qd8h6zr4v1cjw7-dotnet-combined/share/dotnet/packs/Microsoft.NETCore.App.Ref/9.0.3/ref/net9.0/System.Diagnostics.Tools.dll
|
||||
/nix/store/985ricafzdi4rihnd9qd8h6zr4v1cjw7-dotnet-combined/share/dotnet/packs/Microsoft.NETCore.App.Ref/9.0.3/ref/net9.0/System.Diagnostics.TraceSource.dll
|
||||
/nix/store/985ricafzdi4rihnd9qd8h6zr4v1cjw7-dotnet-combined/share/dotnet/packs/Microsoft.NETCore.App.Ref/9.0.3/ref/net9.0/System.Diagnostics.Tracing.dll
|
||||
/nix/store/985ricafzdi4rihnd9qd8h6zr4v1cjw7-dotnet-combined/share/dotnet/packs/Microsoft.NETCore.App.Ref/9.0.3/ref/net9.0/System.dll
|
||||
/nix/store/985ricafzdi4rihnd9qd8h6zr4v1cjw7-dotnet-combined/share/dotnet/packs/Microsoft.NETCore.App.Ref/9.0.3/ref/net9.0/System.Drawing.dll
|
||||
/nix/store/985ricafzdi4rihnd9qd8h6zr4v1cjw7-dotnet-combined/share/dotnet/packs/Microsoft.NETCore.App.Ref/9.0.3/ref/net9.0/System.Drawing.Primitives.dll
|
||||
/nix/store/985ricafzdi4rihnd9qd8h6zr4v1cjw7-dotnet-combined/share/dotnet/packs/Microsoft.NETCore.App.Ref/9.0.3/ref/net9.0/System.Dynamic.Runtime.dll
|
||||
/nix/store/985ricafzdi4rihnd9qd8h6zr4v1cjw7-dotnet-combined/share/dotnet/packs/Microsoft.NETCore.App.Ref/9.0.3/ref/net9.0/System.Formats.Asn1.dll
|
||||
/nix/store/985ricafzdi4rihnd9qd8h6zr4v1cjw7-dotnet-combined/share/dotnet/packs/Microsoft.NETCore.App.Ref/9.0.3/ref/net9.0/System.Formats.Tar.dll
|
||||
/nix/store/985ricafzdi4rihnd9qd8h6zr4v1cjw7-dotnet-combined/share/dotnet/packs/Microsoft.NETCore.App.Ref/9.0.3/ref/net9.0/System.Globalization.Calendars.dll
|
||||
/nix/store/985ricafzdi4rihnd9qd8h6zr4v1cjw7-dotnet-combined/share/dotnet/packs/Microsoft.NETCore.App.Ref/9.0.3/ref/net9.0/System.Globalization.dll
|
||||
/nix/store/985ricafzdi4rihnd9qd8h6zr4v1cjw7-dotnet-combined/share/dotnet/packs/Microsoft.NETCore.App.Ref/9.0.3/ref/net9.0/System.Globalization.Extensions.dll
|
||||
/nix/store/985ricafzdi4rihnd9qd8h6zr4v1cjw7-dotnet-combined/share/dotnet/packs/Microsoft.NETCore.App.Ref/9.0.3/ref/net9.0/System.IO.Compression.Brotli.dll
|
||||
/nix/store/985ricafzdi4rihnd9qd8h6zr4v1cjw7-dotnet-combined/share/dotnet/packs/Microsoft.NETCore.App.Ref/9.0.3/ref/net9.0/System.IO.Compression.dll
|
||||
/nix/store/985ricafzdi4rihnd9qd8h6zr4v1cjw7-dotnet-combined/share/dotnet/packs/Microsoft.NETCore.App.Ref/9.0.3/ref/net9.0/System.IO.Compression.FileSystem.dll
|
||||
/nix/store/985ricafzdi4rihnd9qd8h6zr4v1cjw7-dotnet-combined/share/dotnet/packs/Microsoft.NETCore.App.Ref/9.0.3/ref/net9.0/System.IO.Compression.ZipFile.dll
|
||||
/nix/store/985ricafzdi4rihnd9qd8h6zr4v1cjw7-dotnet-combined/share/dotnet/packs/Microsoft.NETCore.App.Ref/9.0.3/ref/net9.0/System.IO.dll
|
||||
/nix/store/985ricafzdi4rihnd9qd8h6zr4v1cjw7-dotnet-combined/share/dotnet/packs/Microsoft.NETCore.App.Ref/9.0.3/ref/net9.0/System.IO.FileSystem.AccessControl.dll
|
||||
/nix/store/985ricafzdi4rihnd9qd8h6zr4v1cjw7-dotnet-combined/share/dotnet/packs/Microsoft.NETCore.App.Ref/9.0.3/ref/net9.0/System.IO.FileSystem.dll
|
||||
/nix/store/985ricafzdi4rihnd9qd8h6zr4v1cjw7-dotnet-combined/share/dotnet/packs/Microsoft.NETCore.App.Ref/9.0.3/ref/net9.0/System.IO.FileSystem.DriveInfo.dll
|
||||
/nix/store/985ricafzdi4rihnd9qd8h6zr4v1cjw7-dotnet-combined/share/dotnet/packs/Microsoft.NETCore.App.Ref/9.0.3/ref/net9.0/System.IO.FileSystem.Primitives.dll
|
||||
/nix/store/985ricafzdi4rihnd9qd8h6zr4v1cjw7-dotnet-combined/share/dotnet/packs/Microsoft.NETCore.App.Ref/9.0.3/ref/net9.0/System.IO.FileSystem.Watcher.dll
|
||||
/nix/store/985ricafzdi4rihnd9qd8h6zr4v1cjw7-dotnet-combined/share/dotnet/packs/Microsoft.NETCore.App.Ref/9.0.3/ref/net9.0/System.IO.IsolatedStorage.dll
|
||||
/nix/store/985ricafzdi4rihnd9qd8h6zr4v1cjw7-dotnet-combined/share/dotnet/packs/Microsoft.NETCore.App.Ref/9.0.3/ref/net9.0/System.IO.MemoryMappedFiles.dll
|
||||
/nix/store/985ricafzdi4rihnd9qd8h6zr4v1cjw7-dotnet-combined/share/dotnet/packs/Microsoft.NETCore.App.Ref/9.0.3/ref/net9.0/System.IO.Pipelines.dll
|
||||
/nix/store/985ricafzdi4rihnd9qd8h6zr4v1cjw7-dotnet-combined/share/dotnet/packs/Microsoft.NETCore.App.Ref/9.0.3/ref/net9.0/System.IO.Pipes.AccessControl.dll
|
||||
/nix/store/985ricafzdi4rihnd9qd8h6zr4v1cjw7-dotnet-combined/share/dotnet/packs/Microsoft.NETCore.App.Ref/9.0.3/ref/net9.0/System.IO.Pipes.dll
|
||||
/nix/store/985ricafzdi4rihnd9qd8h6zr4v1cjw7-dotnet-combined/share/dotnet/packs/Microsoft.NETCore.App.Ref/9.0.3/ref/net9.0/System.IO.UnmanagedMemoryStream.dll
|
||||
/nix/store/985ricafzdi4rihnd9qd8h6zr4v1cjw7-dotnet-combined/share/dotnet/packs/Microsoft.NETCore.App.Ref/9.0.3/ref/net9.0/System.Linq.dll
|
||||
/nix/store/985ricafzdi4rihnd9qd8h6zr4v1cjw7-dotnet-combined/share/dotnet/packs/Microsoft.NETCore.App.Ref/9.0.3/ref/net9.0/System.Linq.Expressions.dll
|
||||
/nix/store/985ricafzdi4rihnd9qd8h6zr4v1cjw7-dotnet-combined/share/dotnet/packs/Microsoft.NETCore.App.Ref/9.0.3/ref/net9.0/System.Linq.Parallel.dll
|
||||
/nix/store/985ricafzdi4rihnd9qd8h6zr4v1cjw7-dotnet-combined/share/dotnet/packs/Microsoft.NETCore.App.Ref/9.0.3/ref/net9.0/System.Linq.Queryable.dll
|
||||
/nix/store/985ricafzdi4rihnd9qd8h6zr4v1cjw7-dotnet-combined/share/dotnet/packs/Microsoft.NETCore.App.Ref/9.0.3/ref/net9.0/System.Memory.dll
|
||||
/nix/store/985ricafzdi4rihnd9qd8h6zr4v1cjw7-dotnet-combined/share/dotnet/packs/Microsoft.NETCore.App.Ref/9.0.3/ref/net9.0/System.Net.dll
|
||||
/nix/store/985ricafzdi4rihnd9qd8h6zr4v1cjw7-dotnet-combined/share/dotnet/packs/Microsoft.NETCore.App.Ref/9.0.3/ref/net9.0/System.Net.Http.dll
|
||||
/nix/store/985ricafzdi4rihnd9qd8h6zr4v1cjw7-dotnet-combined/share/dotnet/packs/Microsoft.NETCore.App.Ref/9.0.3/ref/net9.0/System.Net.Http.Json.dll
|
||||
/nix/store/985ricafzdi4rihnd9qd8h6zr4v1cjw7-dotnet-combined/share/dotnet/packs/Microsoft.NETCore.App.Ref/9.0.3/ref/net9.0/System.Net.HttpListener.dll
|
||||
/nix/store/985ricafzdi4rihnd9qd8h6zr4v1cjw7-dotnet-combined/share/dotnet/packs/Microsoft.NETCore.App.Ref/9.0.3/ref/net9.0/System.Net.Mail.dll
|
||||
/nix/store/985ricafzdi4rihnd9qd8h6zr4v1cjw7-dotnet-combined/share/dotnet/packs/Microsoft.NETCore.App.Ref/9.0.3/ref/net9.0/System.Net.NameResolution.dll
|
||||
/nix/store/985ricafzdi4rihnd9qd8h6zr4v1cjw7-dotnet-combined/share/dotnet/packs/Microsoft.NETCore.App.Ref/9.0.3/ref/net9.0/System.Net.NetworkInformation.dll
|
||||
/nix/store/985ricafzdi4rihnd9qd8h6zr4v1cjw7-dotnet-combined/share/dotnet/packs/Microsoft.NETCore.App.Ref/9.0.3/ref/net9.0/System.Net.Ping.dll
|
||||
/nix/store/985ricafzdi4rihnd9qd8h6zr4v1cjw7-dotnet-combined/share/dotnet/packs/Microsoft.NETCore.App.Ref/9.0.3/ref/net9.0/System.Net.Primitives.dll
|
||||
/nix/store/985ricafzdi4rihnd9qd8h6zr4v1cjw7-dotnet-combined/share/dotnet/packs/Microsoft.NETCore.App.Ref/9.0.3/ref/net9.0/System.Net.Quic.dll
|
||||
/nix/store/985ricafzdi4rihnd9qd8h6zr4v1cjw7-dotnet-combined/share/dotnet/packs/Microsoft.NETCore.App.Ref/9.0.3/ref/net9.0/System.Net.Requests.dll
|
||||
/nix/store/985ricafzdi4rihnd9qd8h6zr4v1cjw7-dotnet-combined/share/dotnet/packs/Microsoft.NETCore.App.Ref/9.0.3/ref/net9.0/System.Net.Security.dll
|
||||
/nix/store/985ricafzdi4rihnd9qd8h6zr4v1cjw7-dotnet-combined/share/dotnet/packs/Microsoft.NETCore.App.Ref/9.0.3/ref/net9.0/System.Net.ServicePoint.dll
|
||||
/nix/store/985ricafzdi4rihnd9qd8h6zr4v1cjw7-dotnet-combined/share/dotnet/packs/Microsoft.NETCore.App.Ref/9.0.3/ref/net9.0/System.Net.Sockets.dll
|
||||
/nix/store/985ricafzdi4rihnd9qd8h6zr4v1cjw7-dotnet-combined/share/dotnet/packs/Microsoft.NETCore.App.Ref/9.0.3/ref/net9.0/System.Net.WebClient.dll
|
||||
/nix/store/985ricafzdi4rihnd9qd8h6zr4v1cjw7-dotnet-combined/share/dotnet/packs/Microsoft.NETCore.App.Ref/9.0.3/ref/net9.0/System.Net.WebHeaderCollection.dll
|
||||
/nix/store/985ricafzdi4rihnd9qd8h6zr4v1cjw7-dotnet-combined/share/dotnet/packs/Microsoft.NETCore.App.Ref/9.0.3/ref/net9.0/System.Net.WebProxy.dll
|
||||
/nix/store/985ricafzdi4rihnd9qd8h6zr4v1cjw7-dotnet-combined/share/dotnet/packs/Microsoft.NETCore.App.Ref/9.0.3/ref/net9.0/System.Net.WebSockets.Client.dll
|
||||
/nix/store/985ricafzdi4rihnd9qd8h6zr4v1cjw7-dotnet-combined/share/dotnet/packs/Microsoft.NETCore.App.Ref/9.0.3/ref/net9.0/System.Net.WebSockets.dll
|
||||
/nix/store/985ricafzdi4rihnd9qd8h6zr4v1cjw7-dotnet-combined/share/dotnet/packs/Microsoft.NETCore.App.Ref/9.0.3/ref/net9.0/System.Numerics.dll
|
||||
/nix/store/985ricafzdi4rihnd9qd8h6zr4v1cjw7-dotnet-combined/share/dotnet/packs/Microsoft.NETCore.App.Ref/9.0.3/ref/net9.0/System.Numerics.Vectors.dll
|
||||
/nix/store/985ricafzdi4rihnd9qd8h6zr4v1cjw7-dotnet-combined/share/dotnet/packs/Microsoft.NETCore.App.Ref/9.0.3/ref/net9.0/System.ObjectModel.dll
|
||||
/nix/store/985ricafzdi4rihnd9qd8h6zr4v1cjw7-dotnet-combined/share/dotnet/packs/Microsoft.NETCore.App.Ref/9.0.3/ref/net9.0/System.Reflection.DispatchProxy.dll
|
||||
/nix/store/985ricafzdi4rihnd9qd8h6zr4v1cjw7-dotnet-combined/share/dotnet/packs/Microsoft.NETCore.App.Ref/9.0.3/ref/net9.0/System.Reflection.dll
|
||||
/nix/store/985ricafzdi4rihnd9qd8h6zr4v1cjw7-dotnet-combined/share/dotnet/packs/Microsoft.NETCore.App.Ref/9.0.3/ref/net9.0/System.Reflection.Emit.dll
|
||||
/nix/store/985ricafzdi4rihnd9qd8h6zr4v1cjw7-dotnet-combined/share/dotnet/packs/Microsoft.NETCore.App.Ref/9.0.3/ref/net9.0/System.Reflection.Emit.ILGeneration.dll
|
||||
/nix/store/985ricafzdi4rihnd9qd8h6zr4v1cjw7-dotnet-combined/share/dotnet/packs/Microsoft.NETCore.App.Ref/9.0.3/ref/net9.0/System.Reflection.Emit.Lightweight.dll
|
||||
/nix/store/985ricafzdi4rihnd9qd8h6zr4v1cjw7-dotnet-combined/share/dotnet/packs/Microsoft.NETCore.App.Ref/9.0.3/ref/net9.0/System.Reflection.Extensions.dll
|
||||
/nix/store/985ricafzdi4rihnd9qd8h6zr4v1cjw7-dotnet-combined/share/dotnet/packs/Microsoft.NETCore.App.Ref/9.0.3/ref/net9.0/System.Reflection.Metadata.dll
|
||||
/nix/store/985ricafzdi4rihnd9qd8h6zr4v1cjw7-dotnet-combined/share/dotnet/packs/Microsoft.NETCore.App.Ref/9.0.3/ref/net9.0/System.Reflection.Primitives.dll
|
||||
/nix/store/985ricafzdi4rihnd9qd8h6zr4v1cjw7-dotnet-combined/share/dotnet/packs/Microsoft.NETCore.App.Ref/9.0.3/ref/net9.0/System.Reflection.TypeExtensions.dll
|
||||
/nix/store/985ricafzdi4rihnd9qd8h6zr4v1cjw7-dotnet-combined/share/dotnet/packs/Microsoft.NETCore.App.Ref/9.0.3/ref/net9.0/System.Resources.Reader.dll
|
||||
/nix/store/985ricafzdi4rihnd9qd8h6zr4v1cjw7-dotnet-combined/share/dotnet/packs/Microsoft.NETCore.App.Ref/9.0.3/ref/net9.0/System.Resources.ResourceManager.dll
|
||||
/nix/store/985ricafzdi4rihnd9qd8h6zr4v1cjw7-dotnet-combined/share/dotnet/packs/Microsoft.NETCore.App.Ref/9.0.3/ref/net9.0/System.Resources.Writer.dll
|
||||
/nix/store/985ricafzdi4rihnd9qd8h6zr4v1cjw7-dotnet-combined/share/dotnet/packs/Microsoft.NETCore.App.Ref/9.0.3/ref/net9.0/System.Runtime.CompilerServices.Unsafe.dll
|
||||
/nix/store/985ricafzdi4rihnd9qd8h6zr4v1cjw7-dotnet-combined/share/dotnet/packs/Microsoft.NETCore.App.Ref/9.0.3/ref/net9.0/System.Runtime.CompilerServices.VisualC.dll
|
||||
/nix/store/985ricafzdi4rihnd9qd8h6zr4v1cjw7-dotnet-combined/share/dotnet/packs/Microsoft.NETCore.App.Ref/9.0.3/ref/net9.0/System.Runtime.dll
|
||||
/nix/store/985ricafzdi4rihnd9qd8h6zr4v1cjw7-dotnet-combined/share/dotnet/packs/Microsoft.NETCore.App.Ref/9.0.3/ref/net9.0/System.Runtime.Extensions.dll
|
||||
/nix/store/985ricafzdi4rihnd9qd8h6zr4v1cjw7-dotnet-combined/share/dotnet/packs/Microsoft.NETCore.App.Ref/9.0.3/ref/net9.0/System.Runtime.Handles.dll
|
||||
/nix/store/985ricafzdi4rihnd9qd8h6zr4v1cjw7-dotnet-combined/share/dotnet/packs/Microsoft.NETCore.App.Ref/9.0.3/ref/net9.0/System.Runtime.InteropServices.dll
|
||||
/nix/store/985ricafzdi4rihnd9qd8h6zr4v1cjw7-dotnet-combined/share/dotnet/packs/Microsoft.NETCore.App.Ref/9.0.3/ref/net9.0/System.Runtime.InteropServices.JavaScript.dll
|
||||
/nix/store/985ricafzdi4rihnd9qd8h6zr4v1cjw7-dotnet-combined/share/dotnet/packs/Microsoft.NETCore.App.Ref/9.0.3/ref/net9.0/System.Runtime.InteropServices.RuntimeInformation.dll
|
||||
/nix/store/985ricafzdi4rihnd9qd8h6zr4v1cjw7-dotnet-combined/share/dotnet/packs/Microsoft.NETCore.App.Ref/9.0.3/ref/net9.0/System.Runtime.Intrinsics.dll
|
||||
/nix/store/985ricafzdi4rihnd9qd8h6zr4v1cjw7-dotnet-combined/share/dotnet/packs/Microsoft.NETCore.App.Ref/9.0.3/ref/net9.0/System.Runtime.Loader.dll
|
||||
/nix/store/985ricafzdi4rihnd9qd8h6zr4v1cjw7-dotnet-combined/share/dotnet/packs/Microsoft.NETCore.App.Ref/9.0.3/ref/net9.0/System.Runtime.Numerics.dll
|
||||
/nix/store/985ricafzdi4rihnd9qd8h6zr4v1cjw7-dotnet-combined/share/dotnet/packs/Microsoft.NETCore.App.Ref/9.0.3/ref/net9.0/System.Runtime.Serialization.dll
|
||||
/nix/store/985ricafzdi4rihnd9qd8h6zr4v1cjw7-dotnet-combined/share/dotnet/packs/Microsoft.NETCore.App.Ref/9.0.3/ref/net9.0/System.Runtime.Serialization.Formatters.dll
|
||||
/nix/store/985ricafzdi4rihnd9qd8h6zr4v1cjw7-dotnet-combined/share/dotnet/packs/Microsoft.NETCore.App.Ref/9.0.3/ref/net9.0/System.Runtime.Serialization.Json.dll
|
||||
/nix/store/985ricafzdi4rihnd9qd8h6zr4v1cjw7-dotnet-combined/share/dotnet/packs/Microsoft.NETCore.App.Ref/9.0.3/ref/net9.0/System.Runtime.Serialization.Primitives.dll
|
||||
/nix/store/985ricafzdi4rihnd9qd8h6zr4v1cjw7-dotnet-combined/share/dotnet/packs/Microsoft.NETCore.App.Ref/9.0.3/ref/net9.0/System.Runtime.Serialization.Xml.dll
|
||||
/nix/store/985ricafzdi4rihnd9qd8h6zr4v1cjw7-dotnet-combined/share/dotnet/packs/Microsoft.NETCore.App.Ref/9.0.3/ref/net9.0/System.Security.AccessControl.dll
|
||||
/nix/store/985ricafzdi4rihnd9qd8h6zr4v1cjw7-dotnet-combined/share/dotnet/packs/Microsoft.NETCore.App.Ref/9.0.3/ref/net9.0/System.Security.Claims.dll
|
||||
/nix/store/985ricafzdi4rihnd9qd8h6zr4v1cjw7-dotnet-combined/share/dotnet/packs/Microsoft.NETCore.App.Ref/9.0.3/ref/net9.0/System.Security.Cryptography.Algorithms.dll
|
||||
/nix/store/985ricafzdi4rihnd9qd8h6zr4v1cjw7-dotnet-combined/share/dotnet/packs/Microsoft.NETCore.App.Ref/9.0.3/ref/net9.0/System.Security.Cryptography.Cng.dll
|
||||
/nix/store/985ricafzdi4rihnd9qd8h6zr4v1cjw7-dotnet-combined/share/dotnet/packs/Microsoft.NETCore.App.Ref/9.0.3/ref/net9.0/System.Security.Cryptography.Csp.dll
|
||||
/nix/store/985ricafzdi4rihnd9qd8h6zr4v1cjw7-dotnet-combined/share/dotnet/packs/Microsoft.NETCore.App.Ref/9.0.3/ref/net9.0/System.Security.Cryptography.dll
|
||||
/nix/store/985ricafzdi4rihnd9qd8h6zr4v1cjw7-dotnet-combined/share/dotnet/packs/Microsoft.NETCore.App.Ref/9.0.3/ref/net9.0/System.Security.Cryptography.Encoding.dll
|
||||
/nix/store/985ricafzdi4rihnd9qd8h6zr4v1cjw7-dotnet-combined/share/dotnet/packs/Microsoft.NETCore.App.Ref/9.0.3/ref/net9.0/System.Security.Cryptography.OpenSsl.dll
|
||||
/nix/store/985ricafzdi4rihnd9qd8h6zr4v1cjw7-dotnet-combined/share/dotnet/packs/Microsoft.NETCore.App.Ref/9.0.3/ref/net9.0/System.Security.Cryptography.Primitives.dll
|
||||
/nix/store/985ricafzdi4rihnd9qd8h6zr4v1cjw7-dotnet-combined/share/dotnet/packs/Microsoft.NETCore.App.Ref/9.0.3/ref/net9.0/System.Security.Cryptography.X509Certificates.dll
|
||||
/nix/store/985ricafzdi4rihnd9qd8h6zr4v1cjw7-dotnet-combined/share/dotnet/packs/Microsoft.NETCore.App.Ref/9.0.3/ref/net9.0/System.Security.dll
|
||||
/nix/store/985ricafzdi4rihnd9qd8h6zr4v1cjw7-dotnet-combined/share/dotnet/packs/Microsoft.NETCore.App.Ref/9.0.3/ref/net9.0/System.Security.Principal.dll
|
||||
/nix/store/985ricafzdi4rihnd9qd8h6zr4v1cjw7-dotnet-combined/share/dotnet/packs/Microsoft.NETCore.App.Ref/9.0.3/ref/net9.0/System.Security.Principal.Windows.dll
|
||||
/nix/store/985ricafzdi4rihnd9qd8h6zr4v1cjw7-dotnet-combined/share/dotnet/packs/Microsoft.NETCore.App.Ref/9.0.3/ref/net9.0/System.Security.SecureString.dll
|
||||
/nix/store/985ricafzdi4rihnd9qd8h6zr4v1cjw7-dotnet-combined/share/dotnet/packs/Microsoft.NETCore.App.Ref/9.0.3/ref/net9.0/System.ServiceModel.Web.dll
|
||||
/nix/store/985ricafzdi4rihnd9qd8h6zr4v1cjw7-dotnet-combined/share/dotnet/packs/Microsoft.NETCore.App.Ref/9.0.3/ref/net9.0/System.ServiceProcess.dll
|
||||
/nix/store/985ricafzdi4rihnd9qd8h6zr4v1cjw7-dotnet-combined/share/dotnet/packs/Microsoft.NETCore.App.Ref/9.0.3/ref/net9.0/System.Text.Encoding.CodePages.dll
|
||||
/nix/store/985ricafzdi4rihnd9qd8h6zr4v1cjw7-dotnet-combined/share/dotnet/packs/Microsoft.NETCore.App.Ref/9.0.3/ref/net9.0/System.Text.Encoding.dll
|
||||
/nix/store/985ricafzdi4rihnd9qd8h6zr4v1cjw7-dotnet-combined/share/dotnet/packs/Microsoft.NETCore.App.Ref/9.0.3/ref/net9.0/System.Text.Encoding.Extensions.dll
|
||||
/nix/store/985ricafzdi4rihnd9qd8h6zr4v1cjw7-dotnet-combined/share/dotnet/packs/Microsoft.NETCore.App.Ref/9.0.3/ref/net9.0/System.Text.Encodings.Web.dll
|
||||
/nix/store/985ricafzdi4rihnd9qd8h6zr4v1cjw7-dotnet-combined/share/dotnet/packs/Microsoft.NETCore.App.Ref/9.0.3/ref/net9.0/System.Text.Json.dll
|
||||
/nix/store/985ricafzdi4rihnd9qd8h6zr4v1cjw7-dotnet-combined/share/dotnet/packs/Microsoft.NETCore.App.Ref/9.0.3/ref/net9.0/System.Text.RegularExpressions.dll
|
||||
/nix/store/985ricafzdi4rihnd9qd8h6zr4v1cjw7-dotnet-combined/share/dotnet/packs/Microsoft.NETCore.App.Ref/9.0.3/ref/net9.0/System.Threading.Channels.dll
|
||||
/nix/store/985ricafzdi4rihnd9qd8h6zr4v1cjw7-dotnet-combined/share/dotnet/packs/Microsoft.NETCore.App.Ref/9.0.3/ref/net9.0/System.Threading.dll
|
||||
/nix/store/985ricafzdi4rihnd9qd8h6zr4v1cjw7-dotnet-combined/share/dotnet/packs/Microsoft.NETCore.App.Ref/9.0.3/ref/net9.0/System.Threading.Overlapped.dll
|
||||
/nix/store/985ricafzdi4rihnd9qd8h6zr4v1cjw7-dotnet-combined/share/dotnet/packs/Microsoft.NETCore.App.Ref/9.0.3/ref/net9.0/System.Threading.Tasks.Dataflow.dll
|
||||
/nix/store/985ricafzdi4rihnd9qd8h6zr4v1cjw7-dotnet-combined/share/dotnet/packs/Microsoft.NETCore.App.Ref/9.0.3/ref/net9.0/System.Threading.Tasks.dll
|
||||
/nix/store/985ricafzdi4rihnd9qd8h6zr4v1cjw7-dotnet-combined/share/dotnet/packs/Microsoft.NETCore.App.Ref/9.0.3/ref/net9.0/System.Threading.Tasks.Extensions.dll
|
||||
/nix/store/985ricafzdi4rihnd9qd8h6zr4v1cjw7-dotnet-combined/share/dotnet/packs/Microsoft.NETCore.App.Ref/9.0.3/ref/net9.0/System.Threading.Tasks.Parallel.dll
|
||||
/nix/store/985ricafzdi4rihnd9qd8h6zr4v1cjw7-dotnet-combined/share/dotnet/packs/Microsoft.NETCore.App.Ref/9.0.3/ref/net9.0/System.Threading.Thread.dll
|
||||
/nix/store/985ricafzdi4rihnd9qd8h6zr4v1cjw7-dotnet-combined/share/dotnet/packs/Microsoft.NETCore.App.Ref/9.0.3/ref/net9.0/System.Threading.ThreadPool.dll
|
||||
/nix/store/985ricafzdi4rihnd9qd8h6zr4v1cjw7-dotnet-combined/share/dotnet/packs/Microsoft.NETCore.App.Ref/9.0.3/ref/net9.0/System.Threading.Timer.dll
|
||||
/nix/store/985ricafzdi4rihnd9qd8h6zr4v1cjw7-dotnet-combined/share/dotnet/packs/Microsoft.NETCore.App.Ref/9.0.3/ref/net9.0/System.Transactions.dll
|
||||
/nix/store/985ricafzdi4rihnd9qd8h6zr4v1cjw7-dotnet-combined/share/dotnet/packs/Microsoft.NETCore.App.Ref/9.0.3/ref/net9.0/System.Transactions.Local.dll
|
||||
/nix/store/985ricafzdi4rihnd9qd8h6zr4v1cjw7-dotnet-combined/share/dotnet/packs/Microsoft.NETCore.App.Ref/9.0.3/ref/net9.0/System.ValueTuple.dll
|
||||
/nix/store/985ricafzdi4rihnd9qd8h6zr4v1cjw7-dotnet-combined/share/dotnet/packs/Microsoft.NETCore.App.Ref/9.0.3/ref/net9.0/System.Web.dll
|
||||
/nix/store/985ricafzdi4rihnd9qd8h6zr4v1cjw7-dotnet-combined/share/dotnet/packs/Microsoft.NETCore.App.Ref/9.0.3/ref/net9.0/System.Web.HttpUtility.dll
|
||||
/nix/store/985ricafzdi4rihnd9qd8h6zr4v1cjw7-dotnet-combined/share/dotnet/packs/Microsoft.NETCore.App.Ref/9.0.3/ref/net9.0/System.Windows.dll
|
||||
/nix/store/985ricafzdi4rihnd9qd8h6zr4v1cjw7-dotnet-combined/share/dotnet/packs/Microsoft.NETCore.App.Ref/9.0.3/ref/net9.0/System.Xml.dll
|
||||
/nix/store/985ricafzdi4rihnd9qd8h6zr4v1cjw7-dotnet-combined/share/dotnet/packs/Microsoft.NETCore.App.Ref/9.0.3/ref/net9.0/System.Xml.Linq.dll
|
||||
/nix/store/985ricafzdi4rihnd9qd8h6zr4v1cjw7-dotnet-combined/share/dotnet/packs/Microsoft.NETCore.App.Ref/9.0.3/ref/net9.0/System.Xml.ReaderWriter.dll
|
||||
/nix/store/985ricafzdi4rihnd9qd8h6zr4v1cjw7-dotnet-combined/share/dotnet/packs/Microsoft.NETCore.App.Ref/9.0.3/ref/net9.0/System.Xml.Serialization.dll
|
||||
/nix/store/985ricafzdi4rihnd9qd8h6zr4v1cjw7-dotnet-combined/share/dotnet/packs/Microsoft.NETCore.App.Ref/9.0.3/ref/net9.0/System.Xml.XDocument.dll
|
||||
/nix/store/985ricafzdi4rihnd9qd8h6zr4v1cjw7-dotnet-combined/share/dotnet/packs/Microsoft.NETCore.App.Ref/9.0.3/ref/net9.0/System.Xml.XmlDocument.dll
|
||||
/nix/store/985ricafzdi4rihnd9qd8h6zr4v1cjw7-dotnet-combined/share/dotnet/packs/Microsoft.NETCore.App.Ref/9.0.3/ref/net9.0/System.Xml.XmlSerializer.dll
|
||||
/nix/store/985ricafzdi4rihnd9qd8h6zr4v1cjw7-dotnet-combined/share/dotnet/packs/Microsoft.NETCore.App.Ref/9.0.3/ref/net9.0/System.Xml.XPath.dll
|
||||
/nix/store/985ricafzdi4rihnd9qd8h6zr4v1cjw7-dotnet-combined/share/dotnet/packs/Microsoft.NETCore.App.Ref/9.0.3/ref/net9.0/System.Xml.XPath.XDocument.dll
|
||||
/home/chris/.nuget/packages/tmds.dbus.protocol/0.20.0/lib/net8.0/Tmds.DBus.Protocol.dll
|
||||
/nix/store/985ricafzdi4rihnd9qd8h6zr4v1cjw7-dotnet-combined/share/dotnet/packs/Microsoft.NETCore.App.Ref/9.0.3/ref/net9.0/WindowsBase.dll
|
BIN
obj/Debug/net9.0/Avalonia/resources
Normal file
BIN
obj/Debug/net9.0/Avalonia/resources
Normal file
Binary file not shown.
0
obj/Debug/net9.0/SessionZ.ACC04EDB.Up2Date
Normal file
0
obj/Debug/net9.0/SessionZ.ACC04EDB.Up2Date
Normal file
22
obj/Debug/net9.0/SessionZero.AssemblyInfo.cs
Normal file
22
obj/Debug/net9.0/SessionZero.AssemblyInfo.cs
Normal file
@ -0,0 +1,22 @@
|
||||
//------------------------------------------------------------------------------
|
||||
// <auto-generated>
|
||||
// This code was generated by a tool.
|
||||
//
|
||||
// Changes to this file may cause incorrect behavior and will be lost if
|
||||
// the code is regenerated.
|
||||
// </auto-generated>
|
||||
//------------------------------------------------------------------------------
|
||||
|
||||
using System;
|
||||
using System.Reflection;
|
||||
|
||||
[assembly: System.Reflection.AssemblyCompanyAttribute("SessionZero")]
|
||||
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")]
|
||||
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")]
|
||||
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+08b7de7548da9bd36faef2f41c3aa06b55c35820")]
|
||||
[assembly: System.Reflection.AssemblyProductAttribute("SessionZero")]
|
||||
[assembly: System.Reflection.AssemblyTitleAttribute("SessionZero")]
|
||||
[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")]
|
||||
|
||||
// Generated by the MSBuild WriteCodeFragment class.
|
||||
|
1
obj/Debug/net9.0/SessionZero.AssemblyInfoInputs.cache
Normal file
1
obj/Debug/net9.0/SessionZero.AssemblyInfoInputs.cache
Normal file
@ -0,0 +1 @@
|
||||
0f3c08aaa9f34cca29cddcf471b6a61fe831154928f8ea50a498f7aad9b749ee
|
@ -0,0 +1,28 @@
|
||||
is_global = true
|
||||
build_property.AvaloniaNameGeneratorIsEnabled = true
|
||||
build_property.AvaloniaNameGeneratorBehavior = InitializeComponent
|
||||
build_property.AvaloniaNameGeneratorDefaultFieldModifier = internal
|
||||
build_property.AvaloniaNameGeneratorFilterByPath = *
|
||||
build_property.AvaloniaNameGeneratorFilterByNamespace = *
|
||||
build_property.AvaloniaNameGeneratorViewFileNamingStrategy = NamespaceAndClassName
|
||||
build_property.AvaloniaNameGeneratorAttachDevTools = true
|
||||
build_property.TargetFramework = net9.0
|
||||
build_property.TargetPlatformMinVersion =
|
||||
build_property.UsingMicrosoftNETSdkWeb =
|
||||
build_property.ProjectTypeGuids =
|
||||
build_property.InvariantGlobalization =
|
||||
build_property.PlatformNeutralAssembly =
|
||||
build_property.EnforceExtendedAnalyzerRules =
|
||||
build_property._SupportedPlatformList = Linux,macOS,Windows
|
||||
build_property.RootNamespace = SessionZero
|
||||
build_property.ProjectDir = /home/chris/mnt/data/Projects/SessionZero/
|
||||
build_property.EnableComHosting =
|
||||
build_property.EnableGeneratedComInterfaceComImportInterop =
|
||||
build_property.EffectiveAnalysisLevelStyle = 9.0
|
||||
build_property.EnableCodeStyleSeverity =
|
||||
|
||||
[/home/chris/mnt/data/Projects/SessionZero/App.axaml]
|
||||
build_metadata.AdditionalFiles.SourceItemGroup = AvaloniaXaml
|
||||
|
||||
[/home/chris/mnt/data/Projects/SessionZero/Views/MainWindow.axaml]
|
||||
build_metadata.AdditionalFiles.SourceItemGroup = AvaloniaXaml
|
BIN
obj/Debug/net9.0/SessionZero.assets.cache
Normal file
BIN
obj/Debug/net9.0/SessionZero.assets.cache
Normal file
Binary file not shown.
BIN
obj/Debug/net9.0/SessionZero.csproj.AssemblyReference.cache
Normal file
BIN
obj/Debug/net9.0/SessionZero.csproj.AssemblyReference.cache
Normal file
Binary file not shown.
@ -0,0 +1 @@
|
||||
4e6ba7e2fa106e58232c8abf140e192f690c7a8654e921db7f551c8c0406e110
|
67
obj/Debug/net9.0/SessionZero.csproj.FileListAbsolute.txt
Normal file
67
obj/Debug/net9.0/SessionZero.csproj.FileListAbsolute.txt
Normal file
@ -0,0 +1,67 @@
|
||||
/home/chris/mnt/data/Projects/SessionZero/bin/Debug/net9.0/SessionZero
|
||||
/home/chris/mnt/data/Projects/SessionZero/bin/Debug/net9.0/SessionZero.deps.json
|
||||
/home/chris/mnt/data/Projects/SessionZero/bin/Debug/net9.0/SessionZero.runtimeconfig.json
|
||||
/home/chris/mnt/data/Projects/SessionZero/bin/Debug/net9.0/SessionZero.dll
|
||||
/home/chris/mnt/data/Projects/SessionZero/bin/Debug/net9.0/SessionZero.pdb
|
||||
/home/chris/mnt/data/Projects/SessionZero/bin/Debug/net9.0/Avalonia.Base.dll
|
||||
/home/chris/mnt/data/Projects/SessionZero/bin/Debug/net9.0/Avalonia.Controls.dll
|
||||
/home/chris/mnt/data/Projects/SessionZero/bin/Debug/net9.0/Avalonia.DesignerSupport.dll
|
||||
/home/chris/mnt/data/Projects/SessionZero/bin/Debug/net9.0/Avalonia.Dialogs.dll
|
||||
/home/chris/mnt/data/Projects/SessionZero/bin/Debug/net9.0/Avalonia.Markup.Xaml.dll
|
||||
/home/chris/mnt/data/Projects/SessionZero/bin/Debug/net9.0/Avalonia.Markup.dll
|
||||
/home/chris/mnt/data/Projects/SessionZero/bin/Debug/net9.0/Avalonia.Metal.dll
|
||||
/home/chris/mnt/data/Projects/SessionZero/bin/Debug/net9.0/Avalonia.MicroCom.dll
|
||||
/home/chris/mnt/data/Projects/SessionZero/bin/Debug/net9.0/Avalonia.OpenGL.dll
|
||||
/home/chris/mnt/data/Projects/SessionZero/bin/Debug/net9.0/Avalonia.Vulkan.dll
|
||||
/home/chris/mnt/data/Projects/SessionZero/bin/Debug/net9.0/Avalonia.dll
|
||||
/home/chris/mnt/data/Projects/SessionZero/bin/Debug/net9.0/Avalonia.Controls.ColorPicker.dll
|
||||
/home/chris/mnt/data/Projects/SessionZero/bin/Debug/net9.0/Avalonia.Controls.DataGrid.dll
|
||||
/home/chris/mnt/data/Projects/SessionZero/bin/Debug/net9.0/Avalonia.Desktop.dll
|
||||
/home/chris/mnt/data/Projects/SessionZero/bin/Debug/net9.0/Avalonia.Diagnostics.dll
|
||||
/home/chris/mnt/data/Projects/SessionZero/bin/Debug/net9.0/Avalonia.Fonts.Inter.dll
|
||||
/home/chris/mnt/data/Projects/SessionZero/bin/Debug/net9.0/Avalonia.FreeDesktop.dll
|
||||
/home/chris/mnt/data/Projects/SessionZero/bin/Debug/net9.0/Avalonia.Native.dll
|
||||
/home/chris/mnt/data/Projects/SessionZero/bin/Debug/net9.0/Avalonia.Remote.Protocol.dll
|
||||
/home/chris/mnt/data/Projects/SessionZero/bin/Debug/net9.0/Avalonia.Skia.dll
|
||||
/home/chris/mnt/data/Projects/SessionZero/bin/Debug/net9.0/Avalonia.Themes.Fluent.dll
|
||||
/home/chris/mnt/data/Projects/SessionZero/bin/Debug/net9.0/Avalonia.Themes.Simple.dll
|
||||
/home/chris/mnt/data/Projects/SessionZero/bin/Debug/net9.0/Avalonia.Win32.dll
|
||||
/home/chris/mnt/data/Projects/SessionZero/bin/Debug/net9.0/Avalonia.X11.dll
|
||||
/home/chris/mnt/data/Projects/SessionZero/bin/Debug/net9.0/CommunityToolkit.Mvvm.dll
|
||||
/home/chris/mnt/data/Projects/SessionZero/bin/Debug/net9.0/HarfBuzzSharp.dll
|
||||
/home/chris/mnt/data/Projects/SessionZero/bin/Debug/net9.0/MicroCom.Runtime.dll
|
||||
/home/chris/mnt/data/Projects/SessionZero/bin/Debug/net9.0/SkiaSharp.dll
|
||||
/home/chris/mnt/data/Projects/SessionZero/bin/Debug/net9.0/Tmds.DBus.Protocol.dll
|
||||
/home/chris/mnt/data/Projects/SessionZero/bin/Debug/net9.0/runtimes/win-arm64/native/av_libglesv2.dll
|
||||
/home/chris/mnt/data/Projects/SessionZero/bin/Debug/net9.0/runtimes/win-x64/native/av_libglesv2.dll
|
||||
/home/chris/mnt/data/Projects/SessionZero/bin/Debug/net9.0/runtimes/win-x86/native/av_libglesv2.dll
|
||||
/home/chris/mnt/data/Projects/SessionZero/bin/Debug/net9.0/runtimes/osx/native/libAvaloniaNative.dylib
|
||||
/home/chris/mnt/data/Projects/SessionZero/bin/Debug/net9.0/runtimes/linux-arm/native/libHarfBuzzSharp.so
|
||||
/home/chris/mnt/data/Projects/SessionZero/bin/Debug/net9.0/runtimes/linux-arm64/native/libHarfBuzzSharp.so
|
||||
/home/chris/mnt/data/Projects/SessionZero/bin/Debug/net9.0/runtimes/linux-musl-x64/native/libHarfBuzzSharp.so
|
||||
/home/chris/mnt/data/Projects/SessionZero/bin/Debug/net9.0/runtimes/linux-x64/native/libHarfBuzzSharp.so
|
||||
/home/chris/mnt/data/Projects/SessionZero/bin/Debug/net9.0/runtimes/osx/native/libHarfBuzzSharp.dylib
|
||||
/home/chris/mnt/data/Projects/SessionZero/bin/Debug/net9.0/runtimes/win-arm64/native/libHarfBuzzSharp.dll
|
||||
/home/chris/mnt/data/Projects/SessionZero/bin/Debug/net9.0/runtimes/win-x64/native/libHarfBuzzSharp.dll
|
||||
/home/chris/mnt/data/Projects/SessionZero/bin/Debug/net9.0/runtimes/win-x86/native/libHarfBuzzSharp.dll
|
||||
/home/chris/mnt/data/Projects/SessionZero/bin/Debug/net9.0/runtimes/linux-arm/native/libSkiaSharp.so
|
||||
/home/chris/mnt/data/Projects/SessionZero/bin/Debug/net9.0/runtimes/linux-arm64/native/libSkiaSharp.so
|
||||
/home/chris/mnt/data/Projects/SessionZero/bin/Debug/net9.0/runtimes/linux-musl-x64/native/libSkiaSharp.so
|
||||
/home/chris/mnt/data/Projects/SessionZero/bin/Debug/net9.0/runtimes/linux-x64/native/libSkiaSharp.so
|
||||
/home/chris/mnt/data/Projects/SessionZero/bin/Debug/net9.0/runtimes/osx/native/libSkiaSharp.dylib
|
||||
/home/chris/mnt/data/Projects/SessionZero/bin/Debug/net9.0/runtimes/win-arm64/native/libSkiaSharp.dll
|
||||
/home/chris/mnt/data/Projects/SessionZero/bin/Debug/net9.0/runtimes/win-x64/native/libSkiaSharp.dll
|
||||
/home/chris/mnt/data/Projects/SessionZero/bin/Debug/net9.0/runtimes/win-x86/native/libSkiaSharp.dll
|
||||
/home/chris/mnt/data/Projects/SessionZero/obj/Debug/net9.0/SessionZero.csproj.AssemblyReference.cache
|
||||
/home/chris/mnt/data/Projects/SessionZero/obj/Debug/net9.0/Avalonia/Resources.Inputs.cache
|
||||
/home/chris/mnt/data/Projects/SessionZero/obj/Debug/net9.0/Avalonia/resources
|
||||
/home/chris/mnt/data/Projects/SessionZero/obj/Debug/net9.0/SessionZero.GeneratedMSBuildEditorConfig.editorconfig
|
||||
/home/chris/mnt/data/Projects/SessionZero/obj/Debug/net9.0/SessionZero.AssemblyInfoInputs.cache
|
||||
/home/chris/mnt/data/Projects/SessionZero/obj/Debug/net9.0/SessionZero.AssemblyInfo.cs
|
||||
/home/chris/mnt/data/Projects/SessionZero/obj/Debug/net9.0/SessionZero.csproj.CoreCompileInputs.cache
|
||||
/home/chris/mnt/data/Projects/SessionZero/obj/Debug/net9.0/Avalonia/SessionZero.dll
|
||||
/home/chris/mnt/data/Projects/SessionZero/obj/Debug/net9.0/Avalonia/SessionZero.pdb
|
||||
/home/chris/mnt/data/Projects/SessionZero/obj/Debug/net9.0/refint/Avalonia/SessionZero.dll
|
||||
/home/chris/mnt/data/Projects/SessionZero/obj/Debug/net9.0/SessionZ.ACC04EDB.Up2Date
|
||||
/home/chris/mnt/data/Projects/SessionZero/obj/Debug/net9.0/SessionZero.genruntimeconfig.cache
|
||||
/home/chris/mnt/data/Projects/SessionZero/obj/Debug/net9.0/ref/SessionZero.dll
|
BIN
obj/Debug/net9.0/SessionZero.dll
Normal file
BIN
obj/Debug/net9.0/SessionZero.dll
Normal file
Binary file not shown.
1
obj/Debug/net9.0/SessionZero.genruntimeconfig.cache
Normal file
1
obj/Debug/net9.0/SessionZero.genruntimeconfig.cache
Normal file
@ -0,0 +1 @@
|
||||
0d751c82ed0cbf4a6d9bae6c94ed63bec53d6ac6667dfc7f0877776d29b17484
|
BIN
obj/Debug/net9.0/SessionZero.pdb
Normal file
BIN
obj/Debug/net9.0/SessionZero.pdb
Normal file
Binary file not shown.
BIN
obj/Debug/net9.0/apphost
Executable file
BIN
obj/Debug/net9.0/apphost
Executable file
Binary file not shown.
BIN
obj/Debug/net9.0/ref/SessionZero.dll
Normal file
BIN
obj/Debug/net9.0/ref/SessionZero.dll
Normal file
Binary file not shown.
BIN
obj/Debug/net9.0/refint/Avalonia/SessionZero.dll
Normal file
BIN
obj/Debug/net9.0/refint/Avalonia/SessionZero.dll
Normal file
Binary file not shown.
BIN
obj/Debug/net9.0/refint/SessionZero.dll
Normal file
BIN
obj/Debug/net9.0/refint/SessionZero.dll
Normal file
Binary file not shown.
@ -86,7 +86,7 @@
|
||||
"privateAssets": "all"
|
||||
}
|
||||
},
|
||||
"runtimeIdentifierGraphPath": "/nix/store/d9is6wwq7ga429vrxafk69rk0zz11x94-dotnet-sdk-9.0.201/share/dotnet/sdk/9.0.201/PortableRuntimeIdentifierGraph.json"
|
||||
"runtimeIdentifierGraphPath": "/nix/store/985ricafzdi4rihnd9qd8h6zr4v1cjw7-dotnet-combined/share/dotnet/sdk/9.0.201/PortableRuntimeIdentifierGraph.json"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -7,7 +7,7 @@
|
||||
<NuGetPackageRoot Condition=" '$(NuGetPackageRoot)' == '' ">/home/chris/.nuget/packages/</NuGetPackageRoot>
|
||||
<NuGetPackageFolders Condition=" '$(NuGetPackageFolders)' == '' ">/home/chris/.nuget/packages/</NuGetPackageFolders>
|
||||
<NuGetProjectStyle Condition=" '$(NuGetProjectStyle)' == '' ">PackageReference</NuGetProjectStyle>
|
||||
<NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">6.13.1</NuGetToolVersion>
|
||||
<NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">6.12.2</NuGetToolVersion>
|
||||
</PropertyGroup>
|
||||
<ItemGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
|
||||
<SourceRoot Include="/home/chris/.nuget/packages/" />
|
||||
|
@ -1558,7 +1558,7 @@
|
||||
"privateAssets": "all"
|
||||
}
|
||||
},
|
||||
"runtimeIdentifierGraphPath": "/nix/store/d9is6wwq7ga429vrxafk69rk0zz11x94-dotnet-sdk-9.0.201/share/dotnet/sdk/9.0.201/PortableRuntimeIdentifierGraph.json"
|
||||
"runtimeIdentifierGraphPath": "/nix/store/985ricafzdi4rihnd9qd8h6zr4v1cjw7-dotnet-combined/share/dotnet/sdk/9.0.201/PortableRuntimeIdentifierGraph.json"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"version": 2,
|
||||
"dgSpecHash": "8Z1j5gShDZY=",
|
||||
"dgSpecHash": "twRcKx5NSCY=",
|
||||
"success": true,
|
||||
"projectFilePath": "/home/chris/mnt/data/Projects/SessionZero/SessionZero.csproj",
|
||||
"expectedPackageFiles": [
|
||||
|
1
obj/project.packagespec.json
Normal file
1
obj/project.packagespec.json
Normal file
@ -0,0 +1 @@
|
||||
"restore":{"projectUniqueName":"/home/chris/mnt/data/Projects/SessionZero/SessionZero.csproj","projectName":"SessionZero","projectPath":"/home/chris/mnt/data/Projects/SessionZero/SessionZero.csproj","outputPath":"/home/chris/mnt/data/Projects/SessionZero/obj/","projectStyle":"PackageReference","originalTargetFrameworks":["net9.0"],"sources":{"https://api.nuget.org/v3/index.json":{},"https://git.bellsworne.tech/api/packages/Bellsworne/nuget/index.json":{}},"frameworks":{"net9.0":{"targetAlias":"net9.0","projectReferences":{}}},"warningProperties":{"warnAsError":["NU1605"]},"restoreAuditProperties":{"enableAudit":"true","auditLevel":"low","auditMode":"direct"},"SdkAnalysisLevel":"9.0.200"}"frameworks":{"net9.0":{"targetAlias":"net9.0","dependencies":{"Avalonia":{"target":"Package","version":"[11.2.1, )"},"Avalonia.Desktop":{"target":"Package","version":"[11.2.1, )"},"Avalonia.Diagnostics":{"target":"Package","version":"[11.2.1, )"},"Avalonia.Fonts.Inter":{"target":"Package","version":"[11.2.1, )"},"Avalonia.Themes.Fluent":{"target":"Package","version":"[11.2.1, )"},"CommunityToolkit.Mvvm":{"target":"Package","version":"[8.2.1, )"}},"imports":["net461","net462","net47","net471","net472","net48","net481"],"assetTargetFallback":true,"warn":true,"frameworkReferences":{"Microsoft.NETCore.App":{"privateAssets":"all"}},"runtimeIdentifierGraphPath":"/nix/store/985ricafzdi4rihnd9qd8h6zr4v1cjw7-dotnet-combined/share/dotnet/sdk/9.0.201/PortableRuntimeIdentifierGraph.json"}}
|
1
obj/rider.project.model.nuget.info
Normal file
1
obj/rider.project.model.nuget.info
Normal file
@ -0,0 +1 @@
|
||||
17428320655469526
|
1
obj/rider.project.restore.info
Normal file
1
obj/rider.project.restore.info
Normal file
@ -0,0 +1 @@
|
||||
17428320655469526
|
Loading…
Reference in New Issue
Block a user